forked from raushanraj901/Kindmeal-Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
navbar.css
125 lines (106 loc) · 2.08 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
*{
margin: 0px;
padding: 0px;
}
#navbar{
display: flex;
justify-content: space-around;
align-items: center;
padding: 8px 20px 8px 20px;
}
#signin{
text-decoration: none;
font-weight: normal;
font-size: small;
color: white;
padding: 0px;
}
.nav_logo{
margin-left: 60px;
}
.social_media_rediretion{
display: flex;
justify-content: space-between;
align-items: centre;
margin-left: 20px;
}
.nav_login_signup{
display: flex;
justify-content: space-between;
align-items: center;
margin-right: 85px;
}
i{
background-color: #cecece;
border-radius: 25px;
font-size: 20px;
color: white;
padding: 10px;
margin-left: 10px;
}
.nav_social_button{
padding: 5px 15px 5px 15px;
font-size: 12px;
font-weight: 600;
color: white;
border: none;
border-radius: 5px;
margin-left: 10px;
}
#nav_social_facebook_button{
background-color: #3b5998;
}
#nav_social_facebook_button:hover{
background-color: #3c65bd;
}
#nav_social_twitter_button{
background-color: gray;
}
#nav_social_twitter_button:hover{
background-color: rgb(109, 109, 109);
}
.nav_login_signup>p{
font-size: 15px;
color: #444444;
font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.line{
margin-left: 8px;
}
.nav_login_signup>a{
font-size: 15px;
color: #444444;
text-decoration: none;
font-family: 'Roboto', Arial, Helvetica, sans-serif;
margin-left: 5px;
}
/* Home Items */
#items_category{
width: 100%;
background-color: #2bb673;
}
#items_category_list{
display: flex;
justify-content: space-evenly;
align-items: center;
width: 90%;
margin: auto;
}
#items_category_list>li{
list-style: none;
font-family: 'Roboto', Arial, Helvetica, sans-serif;
padding: 10px 20px 10px 20px;
font-weight: 500;
font-size: 18px;
}
#items_category_list>li>a{
text-decoration: none;
color: white;
padding: 10px 20px 10px 20px;
}
#items_category_list>li>a:hover{
color: rgb(242, 242, 242);
}
.active{
background-color: #229760;
}