-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
91 lines (77 loc) · 1.23 KB
/
style.css
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
* {
margin:0;
padding: 0;
box-sizing: border-box;
font-family: "spartan", sans-serif;
}
h1 {
font-size: 50px;
line-height: 64px;
color: black;
}
h2 {
font-size: 46px;
line-height: 54px;
color: black;
}
h4 {
font-size: 26px;
color: black;
}
h6 {
font-weight: 700;
font-size: 12px;
}
p {
font-size: 16px;
color: #465b52;
margin: 15px 0 20px 0;
}
.section-p1 {
padding: 40px 80px;
}
.section-n1 {
margin: 40px 0;
}
body {
width:100%;
}
#header {
display: flex;
align-items:center;
justify-content: space-between;
padding: 20px 80px;
background-color: #e3e6f3;
box-shadow: 0px 5px 15px rgb(0, 0, 0, 0.06);
}
#nav{
display: flex;
align-items: center;
justify-content: center;
}
#nav li{
list-style: none;
padding: 0px 20px;
position: relative;
}
#nav li a {
text-decoration: none;
font-size: 16px;
font-weight: 600;
color: #1a1a1a;
transition: 0.3s ease;
}
#nav li a:hover ,
#nav li a.active {
color: #088178;
}
#nav li a.active::after,
#nav li a:hover::after {
content: "";
width: 30%;
height: 2px;
background-color: #088178;
position: absolute;
bottom: -4px;
left: 20px;
}