-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheading.css
More file actions
59 lines (52 loc) · 826 Bytes
/
heading.css
File metadata and controls
59 lines (52 loc) · 826 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
.bg-body-tertiary{
background-color:#e1eff5 !important;
}
:root{
--primary-color:#3d5cb8;
--primary-color-dark: #334c99;
--text-dark: #0f172a;
--text-light: #64748b;
--extra-light:#f1f5f9;
--max-width: 1200px;
}
*{
padding:0;
margin:0;
box-sizing: border-box;
}
body{
font-family: "poppins", sans-serif;
}
nav{
background: white;
width: 100%;
}
.listnav{
width: auto;
margin-left: 360px;
}
.listnav>ul>li{
margin-left: 50px;
}
.link a{
font-weight: 500;
color: var(--text-light);
border-radius: 3px;
transition: 0.3s;
text-transform: uppercase;
}
.link a:hover{
background: rgb(162, 162, 226);
transition: .5s;
}
.sign_up{
background-color: #20a7db;
border-radius:15px ;
}
.sign_up a{
color: white;
}
.sign_up a:hover{
background-color:#20a7db;
color: white;
}