-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
49 lines (43 loc) · 1008 Bytes
/
styles.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
.navbar{
border-radius: 0;
background-color: grey;
}
.navbar-inverse .navbar-brand{
font-size: 3rem;
color:black;
font-weight: bolder;
}
.navbar-inverse .navbar-brand:hover{
font-size: 3rem;
color:black;
font-weight: bolder;
}
h1{
font-size: 3em;
color: black;
}
h3{
font-size: 1.8em;
color: black;
}
#chicken,#beef,#sushi{
background-color: grey;
border:1px solid black;
height:1000px;
}
@media (min-width:768px){
.navbar-inverse .navbar-nav>.active>a, .navbar-inverse .navbar-nav>.active>a:focus, .navbar-inverse .navbar-nav>.active>a:hover {
display:none;
}
}
@media (max-width:767px){
.navbar-inverse .navbar-nav>.active>a, .navbar-inverse .navbar-nav>.active>a:focus, .navbar-inverse .navbar-nav>.active>a:hover {
background-color: white;
color:black;
font-weight: 600;
border: 1px solid black;
}
#chicken,#beef,#sushi{
margin-bottom:10px;
}
}