-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle2.css
72 lines (62 loc) · 1.3 KB
/
style2.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
body {
font-family: Arial, sans-serif;
margin: 20px;
background-color: black;
justify-content: center;
align-items: center;
display: flex;
flex-direction: column;
}
table {
border-collapse: collapse;
width: 100%;
margin-top: 20px;
background-color: #4f4f4f;
box-shadow: 1px 1px 25px #039600;
}
th, td {
border: 1px solid #c0c0c0;
padding: 8px;
text-align: center;
color: white;
text-shadow: 1px 1px 5px #039600;
}
th {
background-color: #5f5f5f;
}
.input-cell {
width: 60px;
}
h1 {
color: #fffFFF;
text-shadow: 1px 1px 5px #039600;
}
h2 {
color: #fffFFF;
text-shadow: 1px 1px 5px #039600;
}
h3 {
color: #fffFFF;
text-shadow: 1px 1px 5px #039600;
}
.custom-button {
font-family: Verdana, Geneva, Tahoma, sans-serif;
color: #039600;
background-color: #fff;
border: none;
border-radius: 15px;
box-shadow: 1px 1px 5px #039600;
padding: 10px 32px;
font-size: 18px;
margin: 0 10px;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.3s ease;
}
.custom-button.active {
background-color: #039600;
color: #fff;
transform: scale(1.1);
}
.custom-button:hover {
transform: scale(1.05);
}