-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
94 lines (92 loc) · 1.92 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
* {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 50px;
font-weight: 500;
}
body {
display: flex;
height: 100vh;
flex-direction: row;
justify-content: center;
align-items: center;
background: #edf5e1;
}
.first-section {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.game-box {
display: flex;
flex-direction: column;
align-items: center;
/* justify-content: space-around; */
height: 10em;
width: 11em;
background-color: #5cdb95;
border: 3px solid #05386b;
border-radius: 15px;
box-shadow: -11px -11px 15px #327650, 11px 11px 15px #86ffda;
}
.game-title{
margin-top: 25px;
font-size: 50px;
font-weight: 650;
color: #05386b;
}
#round-winner{
margin: 35px 0px 10px 0px;
text-align: center;
height: 72px;
width: 332px;
font-weight: 400;
color: #05386b;
}
#score {
margin: 1.35em 0em 0.4em 0em;
text-align: center;
font-size: 30px;
color: #edf5e1;
}
.buttons-tray {
margin: 20px 0px 15px 0px;
}
.buttons {
outline: none;
color: #edf5e1;
width: 170px;
height: 60px;
border-radius: 15px;
font-size: 30px;
background: linear-gradient(315deg, #053260, #053c72);
box-shadow: -5px -5px 8px #04294e, 5px 5px 8px #064788;
}
.buttons:hover {
background: #084a8b;
}
.instructions-tray {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
width: 70%;
}
.instructions {
color: #edf5e1;
font-size: 0.35em;
}
.reset {
background-color: #edf5e1;
color: #05386b;
border-radius: 15px;
font-size: 0.30em;
height: 25px;
outline: none;
text-align: center;
border: 3px solid #05386b;
line-height: 15px;
}
.reset:hover {
background-color: #d0dac1;
}