-
Notifications
You must be signed in to change notification settings - Fork 0
/
basic.css
71 lines (58 loc) · 1.12 KB
/
basic.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
body {
background: var(--background-image) no-repeat center center fixed;
padding-top: 15px;
padding-bottom: 15px;
color: var(--main-color);
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.item {
margin: 0 0 10px;
position: relative;
}
h2 {
margin:0;
font-size: 40px;
text-align: center;
text-shadow: 4px 4px 8px #262626;
}
h1 {
margin-top: 0;
text-align: center;
font-size: 50px;
text-shadow: 4px 4px 12px #ff2e047f;
-webkit-text-stroke: 1px #262626;
}
html {
padding: 0 20px;
}.img {
box-sizing: border-box;
width: 100% !important;
height: auto !important;
border: 5px solid var(--main-color);
}
.caption {
display: none;
color: white;
position: absolute;
bottom: 0;
width: 100%;
padding: 10px;
background: rgba(0,0,0,.5);
box-sizing: border-box;
}
.caption a {
color: rgb(98, 247, 5);
}
.item:hover .caption {
display: block;
}
footer {
text-align: center;
}
a {
text-decoration: none;
color: rgb(217, 29, 192);
}