-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.css
110 lines (94 loc) · 1.65 KB
/
options.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
html,
body {
display: block !important;
height: 100%;
font-weight: bold;
color: rgb(213, 213, 213);
}
.main {
max-width: 450px;
margin: 0 auto;
}
[hidden] {
display: none;
}
button {
height: 30px;
width: 80px;
outline: none;
margin: 10px;
border: none;
border-radius: 8px;
background-color: grey;
cursor: pointer;
}
button.current {
box-shadow: 0 0 0 2px white, 0 0 0 4px black;
}
div.hc {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
margin-top: 12px;
}
.statc {
position: relative;
}
div.stat {
position: absolute;
right: 30px;
font-style: bold;
}
.warning {
color: yellow;
}
.ver {
font-style: italic;
}
body {
background-image: url("images/button-ico-512-bg.png");
background-repeat: no-repeat;
background-attachment: fixed;
/* background-size: 100% 100%; */
background-size: 100% max(100%, 512px);
background-color: rgba(0, 0, 0, 0.1);
overflow: auto;
/* overflow-y: hidden; */
}
.flex-container {
display: flex;
justify-content: space-evenly;
}
.flex-right {
/* margin-left: auto; */
}
.amode {
font-style: italic;
}
.hidden {
display: none !important;
}
.btnctrl {
height: unset !important;
border: solid;
}
.item-container {
gap: 2px;
padding: 8px;
display: grid;
grid-template-columns: 60% auto;
}
.divider {
grid-column: span 2;
}
a:-webkit-any-link:active,
a:-webkit-any-link {
color: rgb(213, 213, 213);
}
@media screen and (min-height: 550px) {
body {
overflow-y: hidden;
background-size: 100% 100%;
}
}