-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpages.css
More file actions
40 lines (40 loc) 路 702 Bytes
/
Copy pathpages.css
File metadata and controls
40 lines (40 loc) 路 702 Bytes
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
/* Essentials */
:root {
--primary-color: linear-gradient(to top left, #39b385, #9be15d);
}
::selection {
color: #fff;
background: var(--primary-color);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body {
width: 100vw;
height: 100vh;
max-height: 100vh;
background: #f4f4f4;
}
.whole-page-container {
width: 100%;
height: 100%;
position: relative;
display: flex;
justify-content: center;
align-items: center;
font-size: 62.5%;
}
.whole-page-container::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--primary-color);
z-index: -20;
opacity: 0.85;
}