-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
61 lines (50 loc) · 864 Bytes
/
styles.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
body {
font-family: 'Roboto', sans-serif;
background-color: #232323;
padding: 0;
margin: 0;
}
.top-menu {
margin-top: 0;
background-color: white;
text-align: center;
}
#header{
background-color: crimson;
color: white;
padding-bottom: 1rem;
}
h2, h3 {
margin-top: 0;
margin-bottom: 0;
}
#buttons-row {
display: flex;
justify-content: space-between;
margin-bottom: 0;
}
#new-colors-button-container {
width: 100px;
}
#difficulty-buttons-container {
width: 300px;
}
#prompt {
font-size: 1.25rem;
}
.color-row {
display: flex;
justify-content: center;
}
.square {
position: relative;
width: 50%;
background-color: purple;
border-radius: 1.5rem;
margin: 1rem 1rem !important;
}
.square:after {
content: "";
display: block;
padding-bottom: 100%;
}