-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
68 lines (62 loc) · 1001 Bytes
/
style.css
File metadata and controls
68 lines (62 loc) · 1001 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
56
57
58
59
60
61
62
63
64
65
66
67
68
body {
background: #ecf0f1;
font-family: Helvetica, sans-serif;
}
.container {
margin: 0 auto;
max-width: 960px;
text-align: center;
}
header {
font-family: 'Press Start 2P', cursive;
font-size: 2em;
padding: 20px;
}
#generate {
background: #87d37c;
color: #fff;
text-transform: uppercase;
font-size: 15px;
height: 40px;
width: 150px;
line-height: 40px;
margin: 15px 15px;
text-align: center;
border: 0;
transition: all 0.3s ease 0s;
}
#generate:hover {
background: #75B66C;
cursor: pointer;
}
table {
border-spacing: 1;
margin: 0 auto;
}
td.drawable {
width: 35px;
height: 35px;
background: black;
}
input[type=radio] {
display: none;
}
label {
width: 43px;
height: 15px;
display: inline-block;
border: 4px solid transparent;;
box-shadow: 0 0 2px rgba(0,0,0,.3);
}
input:checked + label {
border-color: rgb(184, 0, 255);
}
pre {
word-wrap: break-word;
}
.hidden button {
display: none;
}
table.hidden, .hidden td, .hidden tr {
border-collapse: collapse;
}