-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
77 lines (66 loc) · 1.16 KB
/
Copy pathstyle.css
File metadata and controls
77 lines (66 loc) · 1.16 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
@font-face {
font-family: "Bluu Next";
src: url(./assets/bluunext.woff2), url(./assets/bluunext.woff);
}
body {
font-family: "Bluu Next", 'Times New Roman', Times, serif;
font-size: 24px;
line-height: 1.25;
background-color: #f0ebe4;
background: url('/assets/Beach.jpg');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
color: #333333;
height: 100vh;
transition: background 0.5s ease-in-out;
}
h1 {
font-size: 24px;
color:#fff;
margin: 16px 0 4px 0;
}
h2 {
font-size: 8vmin;
color: #fff;
}
section {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 60%;
text-align: center;
}
.circle {
display: inline-block;
width: 20px;
height: 20px;
background-color: #fff;
border-radius: 9999px;
}
.controls {
background: hsla(0, 0%, 0%, 0.4);
backdrop-filter: blur(4px);
padding: 16px 12px 24px 12px;
border-radius: 9999px;
margin-bottom: 40px;
}
footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
footer img {
margin: 0 20px;
cursor: pointer;
opacity: .7;
}
footer img:hover {
opacity: 1;
transition: .3s;
}