-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (47 loc) · 1.04 KB
/
style.css
File metadata and controls
48 lines (47 loc) · 1.04 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
@import url('https://fonts.googleapis.com/css2?family=Sevillana&family=Work+Sans:wght@400;500&display=swap');
*{
margin:0%;
padding: 0%;
box-sizing: border-box;
font-family: 'Work Sans', sans-serif;
}
:root{
--heading: rgb(0 10 45);
--para: #777;
--para: #e4e4e4;
--white: #fff;
--helper: #90ff84;
--helper-tint: #f3f4ff;
--bg: rgb(249 249 255);
--gradient: linear-gradient(0deg, rgb(165, 255, 132)0% rgb(98 189 252)100%);
--gradientSupport: -webkit-linear-gradient(0deg, rgb(132, 255, 142)0% rgb(98 189 252)100%);
--shadow: 0px 0px 20px 0px rgb(132 255 142/20%);
}
html{
font-size: 62.5%;
/* 1rem=10px;*/
}
h1,h2,h3,h4{
font-family: 'Sevillana', cursive;
}
h1{
color: var(--heading);
font-size: 6rem;
font-weight: 600;
}
h3{
font-size: 1.8rem;
font-weight: 400;
/* margin-bottom: 1rem; */
}
p{
color: var(--para);
line-height: 1.6;
font-size: 1.7rem;
}
a{
text-decoration: none;
}
li{
list-style: none;
}