-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
83 lines (68 loc) · 1.1 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400&display=swap');
body {
height: 100vh;
display: flex;
margin: 0;
padding: 0;
}
p {
font-family: 'Roboto', sans-serif;
font-size: 40px;
font-weight: 700;
}
#score {
margin-bottom: 0;
}
#round {
font-weight: 100;
}
#rps-buttons {
display: flex;
flex-direction: column;
justify-content: center;
gap: 20px;
margin-left: 20px;
}
#rps-buttons button {
aspect-ratio: 1 / 1;
font-size: 2.5em;
}
.container {
display: flex;
flex-direction: column;
flex: auto;
text-align: center;
}
#selections {
display: flex;
justify-content: center;
gap: 100px;
}
.selection-sign {
font-size: 100px;
}
.selection-card p {
font-size: 1.5em;
font-weight: 400;
}
#round-result {
font-weight: 100;
}
#replay-btn {
padding: 10px;
align-self: center;
font-size: 1.5em;
}
#round-result span {
font-weight: 300;
}
.row {
display: flex;
justify-content: center;
flex-flow: wrap;
gap: 30px;
padding-bottom: 40px;
}
#game-results {
font-weight: 700;
}