-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmipmap-generator.css
More file actions
69 lines (67 loc) · 1.17 KB
/
mipmap-generator.css
File metadata and controls
69 lines (67 loc) · 1.17 KB
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
@font-face {
font-family: "Noto Sans";
src: url(./fonts/NotoSans-Regular.ttf);
}
body {
margin: 0px;
overflow: hidden;
--border-size: 1px;
font-family: "Noto Sans";
}
* {
font-family: "Noto Sans";
box-sizing: content-box;
}
#body {
display: grid;
grid-gap: 4px;
border: 2px solid black;
margin: 8px;
padding: 8px;
grid-template-columns: auto auto;
text-align: center;
}
#title {
font-size: 40px;
grid-column: span 2;
}
#body label {
text-align: right;
}
#body input {
grid-column: 2;
width: 300px;
}
#body select {
grid-column: 2;
width: 306px;
}
#body button {
grid-column: 2;
min-width: 100px;
width: 292px;
}
#progressBar {
border: 1px solid light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
border-radius: 2px;
/* border-style: inset; */
width: 306px;
text-align: center;
/* height: 10px;
margin: auto;
margin-left: 0px; */
position: relative;
}
#progressBarBackground {
position: absolute;
left: 0px;
top: 0px;
height: 100%;
background-color: lime;
}
#progressBarText {
position: relative;
}
#timeRemaining {
width: 308px;
}