-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathraetsel.css
More file actions
69 lines (56 loc) · 908 Bytes
/
Copy pathraetsel.css
File metadata and controls
69 lines (56 loc) · 908 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
69
@import url('https://fonts.googleapis.com/css?family=Short+Stack');
body {
}
.solved {
background-color: #cfc;
color: green;
transition: 2s;
}
.solved * {
border-color: green;
transition: 2s;
}
.solved .filled {
color: green;
transition: 2s;
}
body > * {
display: table;
margin: 32pt auto;
}
#puzzle {
font-family: sans-serif;
font-size: 32pt;
}
#puzzle td {
padding: 0.2em 0.5em;
text-align: right;
}
#puzzle span {
display: inline-block;
width: 32pt;
height: 32pt;
margin: 0pt -4pt;
padding: 0pt 4pt 8pt 4pt;
border-radius: 50%;
text-align: center;
cursor: pointer;
}
.filled {
font-family: 'Short Stack', cursive;
color: blue;
}
button {
margin: 0px 1em;
border: 2px solid black;
border-radius: 30pt;
padding: 0.5em 2em;
color: inherit;
background-color: inherit;
}
button:hover {
background-color: #eee;
}
.solved button:hover {
background-color: white;
}