-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (57 loc) · 984 Bytes
/
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
body{
box-sizing: border-box;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
background-color: gray;
}
h1{
font-size: 2.5rem;
margin-bottom: 10px;
}
button{
font-size: 2rem;
margin-bottom: 15px;
}
span{
font-size: 2rem;
font-weight: bold;
}
#game-container{
text-align: center;
display: flex;
flex-direction: column;
width: 75vw;
margin: 10px auto;
}
#category-row{
display: flex;
align-items:center;
margin-bottom: 20px;
}
#clue-board{
flex-direction: column;
}
.clue-box{
display: flex;
align-items: center;
justify-content: center;
border: 2px solid white;
border-radius: 5px;
margin: 5px;
height: 100px;
flex: 1;
background-color: blue;
font-weight: bold;
font-size: 2rem;
text-transform: uppercase;
}
.clue-row{
display: flex;
}
.category-box{
font-size: .8rem;
line-height: 25px;
}
.clicked-box{
font-size: 1rem;
}