-
Notifications
You must be signed in to change notification settings - Fork 0
/
codebreaker.css
76 lines (53 loc) · 826 Bytes
/
codebreaker.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
73
*{
box-sizing: border-box;
}
[class*="col-"] {
float: left;
padding: 10px;
}
.col-1 {
width: 35%;
}
.col-2 {
width: 35%;
}
.col-3 {
width: 30%;
}
@media only screen and (max-width: 768px) {
/* For mobile phones: */
[class*="col-"] {
width: 100%;
}
}
table {
background-color:#bc9f7e;
border: 0.05em solid black;
}
td {
width: 2em;
height: 1.25em;
text-align: center;
border: 0.05em solid black;
border-collapse: collapse;
color: #91775A;
}
#header {
text-align: center;
font-family: 'Michroma', sans-serif;
}
img {
height: 1.25em;
width: 2em;
}
.c5 {
width: 5em;
}
th {
height: 2em;
font-family: 'Michroma', sans-serif;
color: #91775a;
}
#reset {
display: none;
}