-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
83 lines (70 loc) · 1.66 KB
/
stylesheet.css
File metadata and controls
83 lines (70 loc) · 1.66 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
body{
background-color:cornflowerblue;
text-align: center;
font-family: cursive;
}
*{box-sizing: border-box;}
/*------------------ default styling----------------*/
.default{
width:90%;
height:auto;
border: 1px solid black;
background-color: darkgrey;
margin-right: auto;
margin-left: auto;
padding-left: 15px;
}
/*---------------large screen styling-----------------*/
@media (min-width: 992px){ .largeMenu{
width:30%;
float: left;
margin:20px;
}
}
/*-------------------medium screen-------------------*/
@media (min-width: 768px) and (max-width: 991px) {.medMenu{
width: 45%;
float: right;
margin: 5px;
clear: right;
}
}
@media (min-width: 768px) and (max-width: 991px) {.medMenuLeft{
width: 45%;
float: left;
margin: 5px;
clear: left;
}
}
@media (min-width: 768px) and (max-width: 991px) {.medMenuBot{
width: 99%;
float: left;
margin: 5px;
clear: both;
}
}
/*---------------meat labels---------------*/
.sushi{
background-color: aquamarine;
text-align: center;
height: auto;
width: 100px;
border: 1px solid black;
float: right;
}
.beef{
background-color: coral;
text-align: center;
height: auto;
width: 100px;
border: 1px solid black;
float:right;
}
.chicken{
background-color: blanchedalmond;
text-align: center;
height: auto;
width: 100px;
border: 1px solid black;
float: right;
}