-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevinDefault.css
More file actions
55 lines (45 loc) · 822 Bytes
/
Copy pathdevinDefault.css
File metadata and controls
55 lines (45 loc) · 822 Bytes
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
* {
box-sizing: border-box;
overflow:auto;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
body {
background-color: #262626;
text-align:center;
color: floralwhite;
}
button {
background-color: #404040;
color: linen;
text-align: center;
border-radius: 4px;
}
#newGame {
visibility: hidden;
}
/* https://stackoverflow.com/a/14750390 */
button:disabled,button[disabled] {
background-color: lightgrey;
color: slategrey;
}
/* https://www.w3schools.com/howto/howto_css_table_center.asp */
.center {
margin-left: auto;
margin-right: auto;
}
table, th, td {
border: 1px solid floralwhite;
}
th, td {
padding: 0.6em;
}
a:link {
color: #dbda9a;
}
a:visited {
color: #a0bda1;
}
#counter {
visibility: hidden;
height: 20px;
}