-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (102 loc) · 1.88 KB
/
style.css
File metadata and controls
106 lines (102 loc) · 1.88 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "helvetica neue";
}
html,
body {
height: 100%;
width: 100%;
}
body {
overflow: hidden;
}
main {
height: 100%;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #74ebd5 0%, #acb6e5 100%);
}
main video {
position: absolute;
height: 100%;
width: 100%;
-o-object-fit: cover;
object-fit: cover;
}
main .card {
width: 550px;
background-color: transparent;
border-radius: 10px;
padding: 30px;
box-shadow: 0 0 5px rgba(121, 120, 120, 0.642);
-webkit-backdrop-filter: blur(8px);
backdrop-filter: blur(8px);
z-index: 1;
margin-right: 60%;
margin-top: -20%;
}
main .card #msg {
text-align: center;
font-size: 25px;
color: rgb(206, 223, 172);
margin-top: 20px;
animation: glow 1s ease-in-out infinite;
}
main .card p {
text-align: center;
margin-bottom: 40px;
font-size: 30px;
font-weight: 500;
color: white;
}
main .card span {
font-weight: 800;
font-size: 35px;
color: rgb(75, 109, 233);
}
main .outer {
height: 20px;
border-radius: 50px;
width: 100%;
background-color: rgb(184, 184, 184);
}
main .inner {
height: 100%;
width: 0%;
border-radius: 50px;
background-color: rgb(220, 60, 16);
}
main .bottom {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 20px;
}
main .bottom h2 {
font-size: 40px;
color: white;
}
main .bottom button {
padding: 12px 25px;
font-size: 18px;
border: none;
border-radius: 8px;
background-color: royalblue;
color: white;
cursor: pointer;
}
main .bottom button:active {
scale: 0.95;
}
@keyframes glow {
from {
text-shadow: 0px 0px 5px rgba(254, 254, 3, 0.97), 0px 0px 10px #000;
}
to {
text-shadow: 0px 0px 20px rgba(254, 254, 3, 0.97), 0px 0px 25px #000;
}
}/*# sourceMappingURL=style.css.map */