-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyles.css
More file actions
58 lines (50 loc) · 858 Bytes
/
styles.css
File metadata and controls
58 lines (50 loc) · 858 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
body {
font-family: sans-serif;
}
.hangmanContainer {
width: 200px;
display: flex;
flex-direction: column;
}
.hangmanRow {
display: flex;
justify-content: center;
}
.hangmanHead {
border: solid 5px;
width: 25px;
height: 25px;
border-radius: 50%;
opacity: 0;
}
.hangmanBody {
border: solid 3px;
height: 20px;
opacity: 0;
}
.hangmanLeftHand {
border: solid;
transform: rotate(45deg);
margin-right: 5px;
opacity: 0;
}
.hangmanRightHand {
border: solid;
transform: rotate(-45deg);
margin-left: 5px;
opacity: 0;
}
.hangmanLeftLeg {
border: solid;
height: 30px;
transform: rotate(25deg);
margin-right: 5px;
opacity: 0;
}
.hangmanRightLeg {
border: solid;
height: 30px;
transform: rotate(-25deg);
margin-left: 5px;
opacity: 0;
}