-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
86 lines (76 loc) · 1.26 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
body {
background-color: #E3E6F3;
margin: 0;
}
/* Header Navigation Bar */
.navbar {
display: flex;
flex-direction: row;
position: relative;
justify-content: space-between;
align-items: center;
height: 70px;
padding: 3px 40px;
background-color: #E3E6F3;
z-index: 99;
position: sticky;
top: 0;
transition: background-color 0.5s ease;
}
/* Logo */
.logo {
font-family: 'Contrail One', cursive;
margin-left: 30px;
cursor: pointer;
}
.logo span {
font-weight: 500;
color: red;
}
/* Center menu */
.menu {
display: flex;
align-items: center;
gap: 15px;
}
.items {
padding-right: 10px;
font-size: 18px;
font-family: 'Poppins', sans-serif;
font-weight: 550;
color: #333333;
overflow: hidden;
text-decoration: none;
}
.items:hover{
color: #75B3B5;
}
/* User name and Profile */
.user {
display: flex;
margin-right: 10px;
align-items: center;
margin-left: 30px ;
}
.show-user {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.show-user p {
margin: 0px 22px 0px 0px;
}
.user-line {
width: 2.5px;
height: 50px;
border-radius: 5px;
background-color: #333333;
margin-left: -10px;
}
.user img {
width: 45px;
height: 45px;
border-radius: 25px;
cursor: pointer;
}