-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
44 lines (43 loc) · 1.08 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
.container {
color: green;
font-family: helvetica, times new roman;
}
h2 {
color: blue;
}
#loading {
display: none;
position: fixed;
z-index: 999;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 0.5);
}
#loading img {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) rotate(0deg);
animation: rotate 2s linear infinite;
}
@keyframes rotate {
0% {
transform: translate(-50%, -50%) rotate(0deg);
}
100% {
transform: translate(-50%, -50%) rotate(360deg);
}
}
body {
background-color: lightblue;
}
#prints {
font-family: helvetica, times new roman;
}
span.container {
display: block;
}
.logo {
align: center;