-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (53 loc) · 771 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
body{
background: #000000;
color: lightgray;
font-size: 28px;
}
#main{
width: 1000px;
margin-right: auto;
margin-left: auto;
}
#watchword{
font-size: 48px;
width: 1000px;
margin-top: 50px;
margin-bottom: 50px;
text-align: center;
color: lightgray;
min-height: 60px;
}
#hangman{
float:left;
width: 500px;
text-align: center;
min-height: 280px;
}
#letters{
float:left;
width: 500px;
text-align: center;
min-height: 280px;
}
.oneLetter{
width: 30px;
height: 30px;
text-align: center;
margin: 5px;
padding: 5px;
border:3px solid gray;
float:left;
border-radius: 10px;
cursor: pointer;
}
.oneLetter:hover{
background-color: #222222;
border-color: white;
}
.reset{
color:#00CC00;
cursor: pointer;
}
.reset:hover{
color:white;
}