-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.scss
More file actions
142 lines (101 loc) · 2.35 KB
/
style.scss
File metadata and controls
142 lines (101 loc) · 2.35 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
* {
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%);
video{
position: absolute;
height: 100%;
width: 100%;
object-fit: cover;
// z-index: -1;
}
.card {
width: 550px;
background-color: transparent;
border-radius: 10px;
padding: 30px ;
box-shadow: 0 0 5px rgba(121, 120, 120, 0.642);
backdrop-filter: blur(8px);
z-index: 1;
margin-right: 60%;
margin-top: -20%;
#msg{
text-align: center;
font-size: 25px;
color: rgb(206, 223, 172);
margin-top: 20px;
animation: glow 1.0s ease-in-out infinite;
}
p{
text-align: center;
margin-bottom: 40px;
font-size: 30px;
font-weight: 500;
color: white;
}
span{
font-weight: 800;
font-size: 35px;
color: rgb(75, 109, 233);
}
}
.outer {
height: 20px;
border-radius: 50px;
width: 100%;
background-color: rgb(184, 184, 184);
}
.inner {
height: 100%;
width: 0%;
border-radius: 50px;
background-color: rgb(220, 60, 16);
}
.bottom{
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 20px;
h2{
font-size: 40px;
color: white;
}
button{
padding: 12px 25px;
font-size: 18px;
border: none;
border-radius: 8px;
background-color: royalblue;
color: white;
cursor: pointer;
}
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;
}
}