-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
74 lines (63 loc) · 1.47 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
72
73
74
body {
background-color: #00807F;
margin: 0px;
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome, Edge, Opera and Firefox */
}
/*https://github.com/AlexBSoft/win95.css/blob/master/assets/win95.css*/
progress {
width: 100%;
height: 1rem;
overflow: hidden;
font-size: .75rem;
background-color: silver;
border-radius: 0rem;
border: 1px inset #d5d5d5;
background-color: #1a0094;
margin-block-start: 10px;
margin-block-end: 10px;
color: #1a0094;
}
progress::-moz-progress-bar {
background: #1a0094;
}
progress::-webkit-progress-value {
background: #1a0094;
}
.window {
max-width: 500px;
margin: auto;
}
#upgrades, #help {
position: absolute;
top: 10%;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
max-width: 90%;
}
@media only screen and (min-width: 500px) {
body {
margin: 5vh 0;
}
#upgrades, #help {
max-width: 450px;
}
}
@media only screen and (max-width: 499px) {
#main {
min-height: calc(100vh - 6px);
}
}
.hidden {
display: none;
}
.strikethrough {
text-decoration: line-through;
}