-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
111 lines (97 loc) · 1.72 KB
/
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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
html {
font-size: 11px;
}
body {
background: rgb(48, 47, 47);
display: flex;
flex-direction: column;
}
main {
flex: 3;
}
aside {
flex: 1;
}
button {
text-align: left;
background: rgb(21, 20, 20);
padding: 1.3rem 0 1.3rem 0.5rem;
margin-left: 0rem;
font-size: 1.5rem;
cursor: pointer;
color: rgb(212, 210, 211);
border: none;
border-bottom: 1px solid;
}
.controls {
display: flex;
}
.controls > button {
flex: 1;
border-top: none;
border-bottom: none;
text-align: center;
padding: 1.3rem 0;
background-color: rgb(11, 16, 19);
}
button:hover {
background: rgb(50, 47, 47);
}
#btn1{
margin-top: 8px;
border: 2px solid;
border-color: rgb(218, 173, 173);
color: rgb(212, 210, 211);
}
#btn1:hover{
background-color: rgb(218, 173, 173);
color: rgb(0, 0, 0);
}
#btn2 {
margin-top: 8px;
border: 2px solid;
border-color: rgb(198, 221, 255);
color: rgb(212, 210, 211);
}
#btn2:hover {
background-color:rgb(198, 221, 255);
color: rgb(0, 0, 0);
}
.reload {
display:flex;
justify-content: center;
text-align: center;
}
#btn3 {
text-align: center;
margin-top: 8px;
border: 2px solid;
padding: 1.3rem 0;
border-color: rgba(172, 65, 65, 0.664);
color: rgb(212, 210, 211);
width: 150px;
}
#btn3:hover {
background-color:rgba(190, 58, 58, 0.979);
color: rgb(0, 0, 0);
}
.booster {
display: flex;
flex-direction: column;
}
label {
font-size: 1.9rem;
padding-right: 1.3rem ;
}
.input-wrapper {
background: gray;
padding: 1.3rem;
}
canvas {
width: 100%;
}
@media (min-width: 1000px) {
body {
flex-direction: row;
}
}