-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
117 lines (97 loc) · 1.69 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
html{
padding-left: 10%;
padding-right: 10%;
background-color: #e1f5fe;
}
body {
user-select:none;
}
.header{
display:flex;
flex-direction:row;
justify-content: center;
flex-wrap:wrap;
}
#headerChoices {
margin-top: 5%;
margin-bottom:0;
}
#decideTitle{
margin-top: 0;
}
#bigContainer{
display:flex;
flex-direction:column;
flex: 1 1 auto;
padding:15%;
padding-top:0;
padding-bottom:0;
margin: 0;
align-items: space-between;
justify-content:center;
}
#containerOfThree{
display: flex;
flex-direction:row;
justify-content: center;
justify-self: center;
margin: auto;
flex-basis: auto;
position: relative;
background-color: #ffffff;
border-radius: 10px;
}
.tool{
margin: 30px;
transition: 0.5s;
padding: auto;
height: auto;
width: 30%;
flex: 1 1 auto;
}
.selected{
transform:scale(1.2);
border: solid 4px black;
border-radius: 20%;
padding: 20px;
transform:rotate(-10deg);
}
#scoreBoard{
display: flex;
flex-direction:row;
flex-wrap:nowrap;
margin: none;
justify-content: space-between;
}
#status{
background-color: #afc2cb;
text-align: start;
padding: 4vh;
font-size: 3vh;
font-weight: bold;
user-select: none;
flex-grow: 1;
}
#score{
display: grid;
grid-template-columns: 50px 50px;
grid-template-rows: 40px 40px;
margin-left: 1em;
justify-self: stretch;
}
#you{
grid-column-start: 1;
}
.top{
text-align: center;
margin:0;
font-weight: bold;
font-size: 16pt
}
.bot{
text-align: center;
margin:0;
}
.right{
border-left: solid 2px black;
}