This repository has been archived by the owner on Oct 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
123 lines (105 loc) · 1.67 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
/* https://www.w3schools.com/howto/howto_css_center-vertical.asp */
.container {
position: relative;
}
.center {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.centerdivtext {
text-align: center;
}
/* https://www.w3schools.com/howto/howto_css_loader.asp */
.loader {
border: 5px solid #f3f3f3;
border-radius: 50%;
border-top: 5px solid #afafaf;
width: 50px;
height: 50px;
-webkit-animation: spin 0.5s linear infinite; /* Safari */
animation: spin 0.5s linear infinite;
}
/* Safari */
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
p,
a,
label,
button,
input {
font-family: sans-serif;
}
p,
a,
label {
font-size: 0.8em;
}
.error {
color: #ff0000;
}
input {
margin-bottom: 3px;
}
dialog {
border: 2px solid #000000;
border-radius: 5px;
padding: 5px;
z-index: 1; /* Sit on top */
}
button {
transition-duration: 0.4s;
border-radius: 5px;
}
button:hover {
background-color: #828282;
color: #e0e0e0;
}
.mainmenubutton {
width: 45vw;
height: 2vw;
margin: 1px;
}
.quarterscreen {
width: 50vw;
height: 25vh;
}
.quarterscreendiv {
border: 2px solid #000000;
border-radius: 5px;
padding: 5px;
width: 50vw;
height: 25vh;
overflow-x: hidden;
overflow-y: auto;
}
/* /* The Close Button
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
} */