-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
81 lines (69 loc) · 1.25 KB
/
stylesheet.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
68
69
70
71
72
73
74
75
76
77
78
79
80
* {
background-color: #000000;
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
color: #ffffff;
}
.title p {
font-weight: 900;
text-align: center;
}
body {
display: flex;
flex-direction: column;
align-items: center;
}
.scorebox {
text-align: center;
padding-bottom: 4vh;
}
.score {
font-size: 30px;
}
.progresstext {
font-size: 20px;
height: 8vh;
}
button {
border-radius: 12px;
border-color: #ffffff;
font-size: 30px;
}
button:hover {
background-color: #ffffff;
border-color: #000000;
color: #000000;
}
.actions {
flex: 1;
display: flex;
flex-direction: row;
align-content: center;
}
@media only screen and (max-width: 900px) {
.title p {
font-size: 30px;
}
.actions {
justify-content: space-around;
flex-direction: column;
gap: 3vh;
}
button {
width: 90vw;
height: 10vh;
}
}
@media only screen and (min-width: 900px) {
.title p {
font-size: 80px;
}
.actions {
flex-direction: row;
justify-content: center;
gap: 50px;
}
button {
width: 200px;
height: 200px;
}
}