-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
87 lines (79 loc) · 1.55 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
/* ===== Google Font Import - Poppins ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
transition: all 0.4s ease;;
}
:root{
--body-color: #E4E9F7;
--nav-color: #4070F4;
--side-nav: #010718;
--text-color: #FFF;
--search-bar: #F2F2F2;
--search-text: #010718;
}
body
{
height: 100vh;
background-color: var(--body-color);
}
nav
{
position: fixed;
top: 0;
left: 0;
height: 70px;
width: 100%;
background-color: var(--nav-color);
}
nav .nav-bar
{
position: relative;
height: 100%;
max-width: 1000px;
width: 100%;
background-color: var(--nav-color);
margin: 0 auto;
padding: 0 30px;
display: flex;
align-items: center;
justify-content: space-between;
}
.nav-bar .nav-links
{
display: flex;
align-items: center;
}
.nav-bar .nav-links li
{
margin: 0 5px;
list-style: none;
}
.nav-links li a
{
position: relative;
font-size: 17px;
font-weight: 500;
color: var(--text-color);
text-decoration: none;
padding: 10px;
}
nav .nav-bar .logo a
{
font-size: 25px;
font-weight: 500;
color: var(--text-color);
text-decoration: none;
}
.nav-bar .logo a::before
{
content: '';
position: absolute;
height: 6px;
width: 6px;
border-radius: 50%;
background-color: var(--text-color);
}