-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathroot.css
More file actions
44 lines (37 loc) · 884 Bytes
/
root.css
File metadata and controls
44 lines (37 loc) · 884 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
41
42
43
44
:root {
--primary-color: rgba(20, 182, 247, 0.767);
--wrapper-background-color: rgb(170, 244, 253);
scroll-behavior: smooth;
--component-text-color: rgb(87, 72, 72);
--nav-heading-color: rgb(88, 57, 201);
font-family: Arial, Helvetica, sans-serif;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.component-name {
margin: 0rem 1rem;
padding: 0.5rem;
background-color: rgb(7, 211, 247);
color: var(--component-text-color)
}
.component-name-title {
background-color: rgb(44, 203, 214);
padding: 0 2rem;
border-radius: 1rem;
color: purple;
font-size: 1.6rem;
}
.component-wrapper {
background-color: var(--wrapper-background-color);
margin: 1rem;
margin-top: 0;
padding: 2rem;
display: flex;
align-items: flex-end;
flex-direction: row;
flex-wrap: wrap;
gap: 2rem;
}