-
Notifications
You must be signed in to change notification settings - Fork 80
/
blog.css
52 lines (51 loc) · 1.08 KB
/
blog.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
html {
scroll-behavior: smooth;
}
body {
background: #232321;
}
h1 {
color: #111;
padding: 10px 0;
margin-top: 20px;
margin-bottom: 20px;
}
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
transition: 0.4s;
border: none;
}
.card:hover {
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.4);
}
.card a {
color: initial;
}
.card a:hover {
text-decoration: initial;
}
.card .text-muted i {
margin: 0 10px;
}
#preloader {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #fff; /* change if the mask should have another color then white */
z-index: 99999; /* makes sure it stays on top */
}
#status {
width: 100px;
height: 100px;
position: absolute;
left: 50%; /* centers the loading animation horizontally one the screen */
top: 50%; /* centers the loading animation vertically one the screen */
background-image: url("book.gif");
z-index: 9999; /* path to your loading animation */
background-repeat: no-repeat;
background-position: center;
background-size: cover;
margin: -50px 0 0 -50px; /* is width and height divided by two */
}