-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
71 lines (67 loc) · 1.32 KB
/
main.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
html, body {
margin: 0 auto;
font-family: 'Open Sans Condensed', sans-serif;
}
.grid-container {
display: grid;
width:300px;
margin: 0 auto;
margin-top: 100px;
grid-gap: 5px;
grid-template-columns: auto, auto;
grid-template-rows: 50px, 50px, 50px;
}
.toggles {
display: grid;
justify-content: center;
margin: 0 auto;
margin-top: 10px;
grid-gap: 5px;
grid-template-columns: 50, 50;
grid-template-rows: 50px, 50px;
width: 300px;
}
#seq-display {
color: black;
text-align: center;
grid-row: 2 / span 1;
}
#error-p {
width: 300px;
color: #FF1100;
margin: 0 auto;
text-align: center;
font-size: 28px;
}
#reset-b {
grid-column: 1/2;
height: 25px;
background-color: #96FFC1;
color: black;
border-radius: 25px;
}
#start-b {
grid-column: 2/3;
height: 25px;
background-color: #96FFC1;
color: black;
border-radius: 25px;
}
#title-h {
grid-column: 1/3;
border-radius: 40px;
background-color: #98D9B2;
text-align: center;
color: #FF1100;
font-size: 32;
}
.label-text {
color: #FF1100;
}
.btn-primary {
color: white;
height: 50px;
border-radius: 5px;
background-color: #B2524C;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}