-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
81 lines (74 loc) · 1.44 KB
/
main.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
72
73
74
75
76
77
78
79
80
81
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
body {
position: relative;
width: 100%;
height: 100vh;
overflow: hidden;
margin-top: -5%;
background-color: black;
}
h2 {
width: max-content;
z-index: 9999;
font-size: 100px;
color: rgb(26, 117, 236);
position: absolute;
top: 60%; /* position the top edge of the element at the middle of the parent */
left: 50%; /* position the left edge of the element at the middle of the parent */
transform: translate(
-50%,
-50%
); /* This is a shorthand of
translateX(-50%) and translateY(-50%) */
}
.gradient {
position: absolute;
width: 200%;
height: 200vh;
background: rgba(47, 105, 172, 0.466);
z-index: 9999;
}
.gradient::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}
/* Style the video: 100% width and height to cover the entire window */
#myVideo {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
}
/* Add some content at the bottom of the video/page */
.content {
position: fixed;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
color: #f1f1f1;
width: 100%;
padding: 20px;
}
.blink_me {
animation: blinker 0.3s linear infinite;
}
@keyframes blinker {
50% {
opacity: 0;
}
}