-
Notifications
You must be signed in to change notification settings - Fork 93
/
style.css
87 lines (72 loc) · 1.54 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
body {
height: 100%;
width: 100%; }
header, footer, .center {
text-align: center; }
th, td {
padding: 2px 15px;
max-width: 200px;
overflow: auto;
white-space: nowrap; }
h2, h3, h4, h5, h6, ul, li {
margin-bottom: 0; }
footer {
margin-top: 10px; }
.container {
width: 95%;
max-width: 95%; }
.grid {
margin-bottom: 20px;
width: 100%;
height: 200px; }
.version {
color: #ccc;
font-size: 0.3em; }
.views {
margin-top: -20px;
margin-bottom: 10px; }
.download-button {
margin-left: 10px; }
.no-margin {
margin: 0px; }
.spinner {
position: absolute;
top: 30%;
left: 30%;
width: 40%;
height: 40%;
z-index: 1000;
background-color: grey;
border-radius: 25px;
opacity: .8;
text-align: center; }
.spinner-icon {
position: relative;
top: 50%;
margin-top: -100px;
font-size: 200px;
transform: translateY(-50%); }
.button.button-danger,
button.button-danger,
input[type="submit"].button-danger,
input[type="reset"].button-danger,
input[type="button"].button-danger {
color: #FFF;
background-color: #D9534F;
border-color: #D9534F; }
.button.button-danger:hover,
button.button-danger:hover,
input[type="submit"].button-danger:hover,
input[type="reset"].button-danger:hover,
input[type="button"].button-danger:hover,
.button.button-danger:focus,
button.button-danger:focus,
input[type="submit"].button-danger:focus,
input[type="reset"].button-danger:focus,
input[type="button"].button-danger:focus {
color: #FFF;
background-color: #C43E3A;
border-color: #C43E3A; }
a {
text-decoration: none
}