blob: d96ae31ef98d7ec57aa0b4577b5f22ed7c41ba0a (
plain) (
blame)
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
|
html {
background: black;
}
.txt {
color: #fff;
font-family: Helvetica,"Helvetica Neue",Arial,"Lucida Grande",sans-serif;
position: absolute;
top: 50%;
left: 0;
right: 0;
text-align: center;
z-index: 1;
}
a:hover {
letter-spacing: 2px;
transition: .5s
}
#bld:hover {
letter-spacing: 4px;
}
a {
transition: .5s;
text-decoration: none;
color: #fff;
}
#vid {
position: fixed;
min-width: 100%;
min-height: 100%;
opacity: 1;
width: auto;
height: auto;
z-index: -100;
transform: translateX(-50%) translateY(-50%);
background-size: cover;
overflow: hidden;
-webkit-filter: blur(15px);
-moz-filter: blur(15px);
-o-filter: blur(15px);
-ms-filter: blur(15px);
filter: blur(15px);
background: rgba(7, 9, 21, .5);
filter: brightness(42.5%);
top: 50%;
left: 50%
}
|