-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
67 lines (58 loc) · 1.04 KB
/
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: #0f0f0f;
color: white;
box-sizing: border-box;
overflow: hidden;
font-family: 'Quicksand', sans-serif;
user-select: none;
-moz-user-select: none;
}
#wordtoguess{
font-size: 55px;
text-align: center;
z-index: 99;
}
.yellow{
color: #fecb06
}
#placetoguess{
padding: 10px;
margin-top: 40px;
font-size: 27.5px;
font-family: 'Quicksand', sans-serif;
text-align: center;
background: transparent;
color: #fecb06;
border: none;
border-bottom: 1px solid white;
}
#placetoguess:focus{
outline: none
}
#reload{
position: absolute;
z-index: 99;
top: 2vh;
right: 2vh;
}
#main{
position: relative
}
#points{
position: absolute;
top: -55%;
text-align: center;
z-index: -1;
opacity: 0.1;
font-size: 300px;
}
#wrap{
display: flex;
height: 93vh;
justify-content: center;
align-items: center
}
footer{
height: 7vh;
text-align: center
}