-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
120 lines (99 loc) · 1.72 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-weight: bold;
}
html {
height: 100%;
display: flex;
}
body {
display: flex;
flex-flow: column;
justify-content: center;
align-items: stretch;
flex: 1;
}
header {
text-align: center;
font-size: 48px;
background-color: darkblue;
color: white;
padding: 4px;
}
#content {
display: flex;
flex-flow: column;
justify-content: center;
align-items: stretch;
flex: 1;
}
footer {
background-color: grey;
text-align: center;
padding: 4px;
}
.gamplay-section {
display: flex;
flex-flow: column;
justify-content: center;
align-items: stretch;
flex: 1;
gap: 10%;
text-align: center;
}
.user-selection {
display: flex;
justify-content: center;
gap: 10%;
}
.user-selection > button {
padding: 4%;
height: auto;
text-align: center;
width: 200px;
}
.results-section {
display: flex;
flex: 1;
}
.results-section > * {
flex: 1;
}
.score-board-container, .ties-container {
display: flex;
flex-flow: row;
justify-content: center;
text-align: center;
padding: 4%;
padding-top: 0;
}
.score-board-column {
display: flex;
flex-flow: column;
align-items: stretch;
text-align: center;
font-size: 36px;
flex: 1;
}
.column-label {
border-bottom: solid black 2px;
align-self: stretch;
}
.score-board-container > .score-board-column:first-child {
border-right: solid 2px black;
}
.score-area {
text-align: start;
display: flex;
flex-flow: column;
padding: 30px 50px;
}
.score-value {
font-size: 28px;
}
.link {
text-decoration: none;
color: white;
}