-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathstyle.css
More file actions
99 lines (82 loc) · 1.6 KB
/
style.css
File metadata and controls
99 lines (82 loc) · 1.6 KB
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
body {
font-size: 16px;
color:black;
background-color:darkgrey;
font-family: 'Oxygen', sans-serif;
}
/** HEADER **/
#header-nav {
background-color: yellow;
border-radius: 0;
border: 0;
}
.navbar-brand {
padding-top: 25px;
}
.navbar-brand h1 {
/*food llc*/
font-family: 'Lora', serif;
color:black;
font-size: 1.5em;
text-transform: uppercase;
font-weight: bold;
text-shadow: 1px 1px 1px #222;
margin-top: 0;
margin-bottom: 0;
line-height: .75;
}
.navbar-brand a:hover,
.navbar-brand a:focus {
text-decoration: none;
}
#nav-list {
margin-top: 10px;
}
#nav-list a {
color:darkblue;
text-align: center;
}
#nav-list a:hover {
background:grey;
}
#nav-list a span {
font-size: 1.81em;
}
.navbar-header button.navbar-toggle,
.navbar-header .icon-bar {
border: 10px solid red;
}
.navbar-header button.navbar-toggle {
clear: both;
margin-top: -30px;
}
/* END HEADER */
/********** Extra small devices only **********/
@media (max-width: 767px) {
/* Header */
.navbar-brand {
padding-top: 10px;
height: 80px;
}
.navbar-brand h1 {
/* food llc */
padding-top: 10px;
font-size: 5vw;
/* 1vw = 1% of viewport width */
}
#collapsable-nav a {
/* Collapsed nav menu text */
font-size: 1.1em;
}
#nav-list,
#collapsable-nav {
background-color: chocolate;
}
#xs-deliver {
margin-top: 5px;
font-size: .7em;
letter-spacing: .1em;
text-transform: uppercase;
}
/* End Header */
}