-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.css
More file actions
88 lines (77 loc) · 1.21 KB
/
app.css
File metadata and controls
88 lines (77 loc) · 1.21 KB
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
html {
font-family: sans-serif;
line-height: 1.7;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
video {
display: block;
margin: auto;
}
.button,
.button:hover,
button {
font: inherit;
display: block;
width: 100%;
line-height: 2;
color: white;
background-image: linear-gradient(-45deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 100%);
background-color: blue;
margin-top: 0.5em;
margin-bottom: 0.5em;
padding: 1em 0em;
text-align: center;
text-decoration: none;
border: none;
border-radius: 2px;
cursor: default;
}
pre {
border-left: 2px solid gray;
padding-left: 0.5em;
font-family: monospace, "Courier";
overflow: auto;
}
table {
border: thin solid black;
border-collapse: collapse;
}
th, td {
border: thin solid black;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
#progress {
position: absolute;
top: 50%;
left: 50%;
width: 512px;
height: 512px;
margin-left: -256px;
margin-top: -256px;
animation: spin 15s linear infinite;
}
@media (max-width: 512px) {
#progress {
width: 256px;
height: 256px;
margin-left: -128px;
margin-top: -128px;
}
}
@media (max-width: 256px) {
#progress {
display: none;
}
}