-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
60 lines (53 loc) · 1007 Bytes
/
styles.css
File metadata and controls
60 lines (53 loc) · 1007 Bytes
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{
background-color: #212121;
color: #14FFEC;
font-size: 2.5vmin;
}
.nav {
background-color: #323232;
display: flex;
justify-content: space-between;
align-items:end;
}
.simon-game {
color: #0D7377;
margin: 0 0 0 10px;
font-family: 'Montserrat', sans-serif;
}
.brand {
color: #0D7377;
margin: 0 10px 0 0;
font-family: 'Righteous', sans-serif;
font-size: 3vmin;
}
.main-container {
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
height: 90vh;
}
.level {
font-family: 'Josefin Sans', sans-serif;
}
.container {
display: grid;
grid-template: repeat(2, 30vh) / repeat(2, 30vh);
column-gap: 100px;
row-gap: 50px;
}
.clickables {
border-radius: 2vh;
}
.a{
background-color: #00ABB3;
}
.b{
background-color: #3C4048;
}
.c{
background-color: #B2B2B2;
}
.d{
background-color: #EAEAEA;
}