forked from MohamedMafaz/Propoplex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
navbar.css
72 lines (63 loc) · 1.54 KB
/
navbar.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
/*---------Navbar styling----------------*/
.navbar {
position: fixed;
left: 0;
top: 0;
height: 100%;
width: 223px;
background-color: #fff;
padding: 20px;
box-sizing: border-box;
box-shadow: 2px 4px 10px 1px rgba(138, 125, 125, 0.25);
}
/* Set the style for the links inside the navbar */
.navbar a {
display: block;
color: #7b7b7b;
text-decoration: none;
padding: 10px;
margin-left: 10px;
font-family: 'Poppins';
font-style: normal;
font-weight: 400;
font-size: 13px;
line-height: 20px;
max-width: 160px;
/* identical to box height */
letter-spacing: 0.04em;
}
/* Change the color of the link when it's hovered over */
.navbar a:hover, .navbar a:focus, .item-selected {
background: #F5F5F5;
border-radius: 7px;
outline: none;
}
.premium_button {
width: 167.48px;
height: 42px;
background: linear-gradient(265.55deg, #3EC1C7 19.07%, #18939C 101.72%);
border-radius: 7px;
border: none;
color: #fff;
display: block;
margin: auto;
transition: background-color 0.3s ease;
}
.premium_button:hover {
background: linear-gradient(265.55deg, #18939C 19.07%, #3EC1C7 101.72%);
}
.home {
margin-top: 20px;
border-radius: 7px;
max-width: 160px;
color: red;
}
.navbar i {
margin-right: 10px;
}
.plogo {
width: 115.17px;
height: 69.3px;
margin-bottom: 16px;
}
/*------Navbar section End*/