-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
69 lines (63 loc) · 1.26 KB
/
style.css
File metadata and controls
69 lines (63 loc) · 1.26 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html , body{
height: 100%;
width: 100%;
font-family: Helvetica;
}
main{
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
gap: 20px;
background-color: #111;
padding: 70px;
flex-wrap: nowrap;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
h1{
z-index: 2;
font-size: 40px;
padding: 40px 20px;
background-color: transparent;
border-radius: 10px;
font-family: monospace;
background-color: rgba(0,0,0,0.2);
/* color: rgb(17, 9, 9); */
/* box-shadow: 0 0 10px rgba(17, 16, 16, 0.2); */
color: rgb(255, 255, 255);
box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
backdrop-filter: blur(5px);
}
button{
z-index: 2;
padding: 15px 25px;
font-weight: 600;
border: none;
cursor: pointer;
border-radius: 10px;
background-color: crimson;
color: black;
font-size: 20px;
transition: all 0.2s ease;
width: 200px;
}
button:active{
scale: 0.95;
}
video{
position: fixed;
object-fit: cover;
border-radius: 10px;
box-shadow: 0 0 15px rgba(0,0,0,0.5);
width: 100%;
height : 100%;
top: 0;
left: 0;
}