-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (94 loc) · 1.78 KB
/
style.css
File metadata and controls
97 lines (94 loc) · 1.78 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
*{
box-sizing: border-box;
}
a{
color: black;
text-decoration: none;
}
body{
font-size: 16px;
background-color: white;
font-family: 'Oxygen', sans-serif;
margin: 0;
}
.navbar{
margin: 0;
border-radius: 0px;
}
.navbar-inverse a.navbar-brand{ /*Food LLC name*/
font-family: 'Lora', serif;
font-size: 30px;
font-weight: bold;
color: white;
}
.container{
width: 100%;
color: black;
height: 90%;
padding: 0;
display: block;
margin: 0 auto;
}
#top.text-center{
width: 100%;
text-align: center;
margin-top: 10px;
margin-bottom: 30px;
font-weight: bold;
color: #222;
}
.row{
height: 90%;
}
div.category-tile{
position: relative;
overflow: hidden;
background-color:#a2ace5 ;
transition: all 0.3s;
}
.category-tile span{
position: relative;
top: 0;
right: 0;
width: 100%;
text-align: center;
font-weight: bold;
margin-top: 5px;
margin-bottom: 10px;
}
.category-tile span{
width: 90%;
margin-bottom: 40px;
position: relative;
top: 30px;
left: 20px;
font-family: sans-serif;
color: white
}
@media (min-width: 992px) and (max-width: 1199px) {
#myNavbar.navbar-collapse.collapse{
display: none!important;
}
.col-md-6{
width: 50%;
}
.col-md-12{
width: 100%;
margin-top: 15px;
}
}
/********** Small devices only **********/
@media (min-width: 768px) and (max-width: 992px){
#myNavbar.navbar-collapse.collapse{
display: none!important;
}
.col-sm-12{
margin-top: 15px;
}
}
@media (max-width: 767px) {
.col-xs-12{
width: 100%;
margin-top: 15px;
}
}