-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (54 loc) · 1.01 KB
/
style.css
File metadata and controls
61 lines (54 loc) · 1.01 KB
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
body {
background-color: #292929;
color: #fff;
font-size: 24px;
font-family: Arial, sans-serif;
}
input[type="button"] {
background-color: #3c3c3c;
border: none;
color: #fff;
font-size: 18px;
padding: 16px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
margin: 4px 2px;
cursor: pointer;
width: 100%;
border-radius: 5px;
box-shadow: 0 4px 0 #2b2b2b;
}
input[type="button"]:active {
box-shadow: none;
transform: translateY(4px);
}
input[type="text"] {
background-color: #1c1c1c;
border: none;
color: #fff;
font-size: 28px;
text-align: right;
width: 100%;
padding: 10px;
border-radius: 5px;
}
.title {
font-size: 32px;
margin-top: 20px;
}
table {
margin-top: 20px;
width: 300px;
border-collapse: collapse;
}
td {
padding: 10px;
text-align: center;
border: 1px solid #3c3c3c;
box-shadow: 0 4px 0 #2b2b2b;
}
td:active {
box-shadow: none;
transform: translateY(4px);
}