-
Notifications
You must be signed in to change notification settings - Fork 11
/
style.css
54 lines (47 loc) · 815 Bytes
/
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
html {
height: 100%;
width: 100%;
}
body {
height: 100%;
width: 100%;
background-color: #eee;
margin: 0;
overflow: hidden;
}
#header {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
padding: 10px;
position: absolute;
text-align: left;
top: 0;
width: 60%;
}
#footer {
bottom: 0;
padding-bottom: 10px;
position: absolute;
text-align: center;
width: 100%;
}
.opgroup {
display: inline-block;
}
.operation {
cursor: pointer;
margin: -4px;
max-width: 16vw;
}
.button {
cursor: pointer;
margin: -5px 0px;
max-width: 30vw;
}
#overlay {
background: black url(img/spinner.svg) center center no-repeat;
height: 100%;
opacity: .5;
position: absolute;
width: 100%;
z-index: 100;
}