-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
46 lines (39 loc) · 766 Bytes
/
main.css
File metadata and controls
46 lines (39 loc) · 766 Bytes
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
.text-content {
margin: 20px;
}
body {
color: white;
}
body {
/*make image background automatically resize*/
background: url("background_clean.jpg") no-repeat center center fixed;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
text-shadow: 0px 0px 40px #FFFFFF;
}
.black_text {
color: black;
}
img {
max-height: 100%;
}
h1 {
text-shadow: 1px 1px 25px #000000;
}
h6 {
text-shadow: 1px 1px 25px #000000;
}
.head {
/*background-size: 10px 10px;*/
background-blend-mode: color;
}
body {
opacity: 1;
transition: 0.35s opacity;
}
body.fade-out {
opacity: 0;
transition: none;
}