-
Notifications
You must be signed in to change notification settings - Fork 0
/
nav.css
135 lines (118 loc) · 2.4 KB
/
nav.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
126
127
128
129
130
131
132
133
134
135
/* ***********************************General Styles ********************************************/
a {
text-decoration: none;
}
a:hover {
cursor: pointer;
}
/* *****************************************Footer Section ****************************************/
.h2 {
color: #ffc107;
}
footer {
font-family: "Ubuntu", sans-serif;
background-color: #0d1010;
color: #ffc107;
padding: 3% 2rem 2%;
}
.footerHeadingCol {
padding-left: 8%;
display: flex;
align-items: center;
justify-content: flex-start;
}
/* policies, terms of service and contact */
.footer_clickable:hover {
color: #ffc107;
text-decoration: none;
}
.socialMedia /* social media section */ {
display: flex;
align-items: center;
justify-content: flex-end;
}
.socialMediaIcon /* individual icons styling */ {
margin-right: 15px;
font-size: 2.2rem;
}
.socialMediaIcon:hover /* hover styles */ {
color: #ffc107 !important;
font-size: 2.3rem;
}
.contactRow,
.addressRow {
padding-left: 5.5%;
width: 97%;
margin: auto;
}
.addressRow .col-auto {
padding: 0;
margin: 0;
}
footer a {
color: snow;
}
.copyright {
text-align: center;
margin: 30px auto 0 auto;
}
/* checkout icons */
.checkIcon {
color: green;
}
/* *********************************** Navbar Section ********************************************/
.navbar-expand-lg {
background-color:rgb(270, 209, 7);
z-index: 2;
height: 74px;
padding-bottom: 2%;
}
.navbar-brand {
font-family: kanit,sans-serif;
font-weight: 500;
/* font-size: 0.5rem; */
font-weight: 500;
font-size: 3.5rem;
}
.nav-item /* for each navbar item */ {
font-size: 1.1rem;
font-weight: 500;
font-family: kanit, sans-serif;
}
header {
display: flex;
align-items: center;
justify-content: center;
font-family: "Franklin Gothic Heavy", "Arial Narrow", Arial, sans-serif;
font-size: 32px;
margin-top: -10px;
padding: 30px;
color: burlywood;
border-bottom: 1px solid rgb(255, 223, 169);
}
.content {
display: flex;
flex-direction: row;
word-wrap: normal;
}
li {
/* padding: 10px; */
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
font-size: 15px;
}
.text-white li {
padding: 10px;
}
@media screen and (max-width: 992px) {
.navbar-nav {
background-color: #ffc107;
text-align: right;
width: 150px;
border-radius: 10%;
}
}
@media screen and (max-width: 1000px){
.navbar-expand-lg {
height: auto;
}
}