-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
188 lines (188 loc) · 4.12 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
.bodya{
width: 100vw;
min-height: 100vh;
background: linear-gradient(
0deg,
#86251c 0%,
#86251c 70%,
#ceab4a 70%,
#ceab4a 100%
);
display: grid;
justify-items: right;
margin: 0%;
grid-template-columns: [column0] 100vw [column1];
grid-template-rows: [row0] 5vh [row1] 47% [row2] 47%;
}
.opBxButton{
width:25vw;
height: 100%;
margin-top: 0vh;
background-color: 6b6b6b;
font-size: 3vh;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.bodyb{
width: 100%;
height: 100%;
min-height: 100vh;
background-color: white;
display: grid;
margin: 0%;
grid-template-columns: [column0] 50vw [column1] 50% [column2];
grid-template-rows: [row0] 5vh [row1] 95%;
}
.OperationsBox{
width: 100vw;
height:100%;
grid-column-start: 1;
grid-column-end: span 2;
background-color:#bab9b9 ;
display: grid;
grid-template-rows: [row0] 5vh [row1] 5vh [row3];
grid-template-columns: [c1]25%[c2]25%[c3]25%[c4]25%;
justify-content: right;
align-items:center;
}
.SideBoxes{
display: flex;
width: 100%;
height: 100%;
}
.ButtonBoxes{
width: 44vw;
height: 22vw;
margin: auto;
margin-left: 10%;
margin-top: 0vh;
margin-bottom: auto;
display: grid;
grid-template-rows:[row0] 11vh [row1] 11vh [row2] 11vh [row3] 11vh [row4] ;
grid-template-columns:[col0] 11vh [col1] 11vh [col2] 11vh [col3];
align-items:flex-start;
}
.AButtonBoxes{
width: 33vh;
height: 22vh;
margin-left: auto;
margin-right: auto;
margin-top: 15vh;
margin-bottom: auto;
display: grid;
grid-template-rows:[row0] 11vh [row1] 11vh [row2];
grid-template-columns:[col0] 11vh [col1] 11vh [col2] 11vh [col3];
align-items:flex-start;
}
.Boxes{
display: grid;
width: 100%;
grid-template-columns: [column0]50vw [column1]50vw [column2];
grid-template-rows:[row0] 25vw [row1] 25vw [row2] 25vw [row3] 25vw [row4] ;
align-items:flex-start;
}
/*
input[type="checkbox"] {
/* Add if not using autoprefixer
-webkit-appearance: none;
appearance: none;
/* For iOS < 15 to remove gradient background
background-color: #86251c;
/* Not removed via appearance
margin: 0;
float: left;
border: none;
border-radius: 10%;
color: #ceab4a;
display: inline-block;
text-align: center;
font-size: 5vh;
width: 12.5vw;
height: 10vw;
background-color: #86251c;
}
input[type="checkbox"]:checked {
background-color: #b98578;
}*/
.InputButtonR{
appearance: none;
border: none;
border-radius: 25%;
color: #ceab4a;
display: inline-block;
text-align: center;
font-size: 5vh;
width: 10vh;
height: 10vh;
background-color: #86251c;
}
.InputButtonR:active{
background-color: #b98578;
}
.InputButtonR:checked{
background-color: #b98578;
}
.InputButtonY:active{
background-color: #e9d8af;
}
.InputButtonY:checked{
background-color: #e9d8af;
}
.InputButtonY{
appearance: none;
border: none;
border-radius: 25%;
color: #86251c;
display: inline-block;
text-align: center;
font-size: 5vh;
width: 10vh;
height: 10vh;
background-color: #ceab4a;
}
.MajorFailureB:active{
background: orange;
}
.MajorFailureB{
width:25vw;
height: 100%;
margin-top: 0vh;
background: linear-gradient(
-45deg,
yellow 0%,
yellow 10%,
red 10%,
red 20%,
yellow 20%,
yellow 30%,
red 30%,
red 40%,
yellow 40%,
yellow 50%,
red 50%,
red 60%,
yellow 60%,
yellow 70%,
red 70%,
red 80%,
yellow 80%,
yellow 90%,
red 90%,
red 100%
);
align-self:flex-end;
}
.textBoxes{
display: grid;
width: 100%;
grid-template-columns: [column0] auto [column1]75%[column2];
grid-template-rows:[row0] 20% [row1] 20% [row2] 20% [row3] 20% [row4] 20% [row5];
}
.textInput{
grid-column: column1;
background-color: lightgray;
color:black;
font-size: 2vh;
height: 100%;
align-self: flex-start;
border-color: black;
}