-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.css
57 lines (49 loc) · 981 Bytes
/
custom.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
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
position: relative;
font-family: 'Poppins', sans-serif;
background-image: url('./assets/img/background.jpg');
background-repeat: no-repeat;
background-size: cover;
min-height: 100vh;
}
#header {
height: 80px;
background: #fff;
}
.card {
margin: 0 auto;
}
.mb-c-30 {
margin-bottom: 30px;
}
#background {
width: 100%;
height: 100vh;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
#background video {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
}
.glass {
background: rgba(255, 255, 255, 0.05);
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
}
.glass-new {
backdrop-filter: blur(16px) saturate(180%);
-webkit-backdrop-filter: blur(16px) saturate(180%);
background-color: rgba(17, 25, 40, 0.75);
}