-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
66 lines (64 loc) · 1.11 KB
/
main.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #222222;
color: #eeeeee;
font-family: sans-serif;
font-family: "Press Start 2P", sans-serif;
overflow-x: hidden;
}
/* .top {
position: relative;
} */
.line {
width: 100%;
height: 5px;
display: block;
background-color: white;
margin-top: 3rem;
margin-bottom: 3rem;
}
.secret {
display: block;
background-color: white;
width: 9rem;
height: 7rem;
position: relative;
top: -3rem;
left: 0;
margin: auto;
}
.secret h3 {
color: rgb(70, 68, 68);
font-size: 4rem;
text-align: center;
font-weight: 500;
position: relative;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.guess {
display: block;
width: 16rem;
height: 7rem;
font-size: 2rem;
text-align: center;
color: #eeeeee;
margin: 0 auto 2rem auto;
padding: 2rem;
border: solid 4px #eeeeee;
background-color: transparent;
}
.guess:focus {
outline: none;
}
@media (max-width: 768px) {
.highscore-container,
.score-container {
font-size: 1rem;
}
}