-
Notifications
You must be signed in to change notification settings - Fork 94
/
style.css
70 lines (58 loc) · 897 Bytes
/
style.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
* {
font-family: "Courier New";
font-weight: bold;
color: #00FF00;
}
body {
background: black;
}
#start-screen,
#game-screen {
text-align: center;
overflow: hidden;
}
#game-screen.show {
transition-delay: 1s;
}
.show {
max-height: 1000px;
transition-duration: 1s;
display: block;
}
.hide {
max-height: 0;
overflow: hidden;
transition-duration: 1s;
}
#start {
background-color: black;
border: 5px solid #00FF00;
border-radius: 5px;
font-size: 3em;
display: block;
margin: 100px auto;
}
#start:hover {
cursor: pointer;
background-color: #00FF00;
color: black;
}
#start:active,
#start:focus {
outline: none;
}
#word-list {
list-style-type: none;
padding: 0;
}
#word-list > li {
padding: 5px;
}
#word-list > li.disabled {
color: #ccc;
}
#word-list > li:not(.disabled):hover {
color: yellow;
font-size: 1.5em;
cursor: pointer;
}