-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
67 lines (66 loc) · 972 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
body
{
background-color: #000000;
color: lightgrey;
font-family: 'Inconsolata';
font-size: 28px;
font-weight: 700;
}
#firstbox
{
width: 900px;
margin-left:auto;
margin-right:auto;
min-height: 60px;
}
#strip
{
width: 900px;
margin-top: 50px;
margin-bottom: 50px;
text-align: center;
font-size: 48px;
min-height: 60px;
}
#gallows
{
float: left;
width: 450px;
text-align: center;
min-height: 280px;
}
#alphabet
{
float: left;
width: 450px;
text-align: center;
min-height: 280px;
}
.litera
{
width: 30px;
height: 30px;
text-align: center;
padding: 5px;
margin: 5px;
border: 3px solid grey;
float: left;
cursor: pointer;
border-radius: 15px;
}
.litera:hover
{
backgound-color: #222222;
color: white;
border: 3px solid white;
}
.reset
{
color: green;
cursor: pointer;
font-size: 48px;
}
.reset:hover
{
color:white;
}