-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.css
More file actions
41 lines (33 loc) · 774 Bytes
/
Copy pathMain.css
File metadata and controls
41 lines (33 loc) · 774 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
/* ===================================
VARIABLES
=================================== */
:root {
--primary: #024F55;
--secondary: #3c949e;
--background: #baebf8;
--background2: #62d0e7;
--white: #fff;
--black: #090000;
--hover: #2980b9;
--radius: 10px;
}
/* ===================================
RESET
=================================== */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* ===================================
GLOBAL
=================================== */
body {
font-family: serif;
background: linear-gradient(to bottom, var(--background), var(--background2));
color: var(--black);
display: flex;
flex-direction: column;
align-items: center;
overflow-x: hidden;
}