-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
101 lines (91 loc) · 1.53 KB
/
main.css
File metadata and controls
101 lines (91 loc) · 1.53 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
100
101
* {
box-sizing: border-box;
font-family: Verdana;
}
h1 {
margin-bottom: 15px;
text-align: center;
}
p{
margin-left: 10px;
font-weight: lighter;
}
.chicken {
height: 25px;
width: 33.3%;
text-align: center;
margin-top: 0px;
margin-bottom: 2px;
background-color: #FFAABB;
border: 1px solid black;
color: black;
float : right;
font-weight: bold;
}
.beef {
height: 25px;
width: 33.3%;
margin-top: 0px;
margin-bottom: 2px;
text-align: center;
background-color: #cc0000;
border: 1px solid black;
color: white;
float : right;
font-weight: bold;
}
.sushi {
height: 25px;
width: 33.3%;
margin-top: 0px;
margin-bottom: 2px;
text-align: center;
background-color: #dddd00;
border: 1px solid black;
color: black;
float : right;
font-weight: bold;
}
.divclass {
border: 1px solid black;
background-color: gray;
width: 95%;
height: 180px;
margin-right:auto;
margin-left: auto;
margin-bottom: 15px;
margin-top: 10px;
font-family: Verdana; /*Helvetica;*/
color: black;
}
/* Simple Responsive Framework. */
.row {
width: 100%;
}
/********** Medium devices only **********/
@media (min-width: 768px) and (max-width: 991px) {
.col-md-1, .col-md-3 {
float: left;
border: 1px ;
}
.col-md-1 {
width: 50%;
}
.col-md-3 {
width: 100%;
}
}
/********** Large devices only **********/
@media (min-width: 992px) {
.col-lg-1, .col-lg-3{
float: left;
border: 1px ;
}
.col-lg-1 {
width: 33.3%;
}
.col-lg-3 {
width: 33.3%;
}
}
}