-
Notifications
You must be signed in to change notification settings - Fork 0
/
restaurant.css
105 lines (97 loc) · 1.73 KB
/
restaurant.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
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
102
103
104
105
* {
box-sizing: border-box;
}
[class*="col-"] {
float: left;
padding: 15px;
}
/* For mobile phones: */
[class*="col-"] {
width=100%;
}
@media only screen and (min-width: 600px) {
/*For tablets: */
/* For tablets: */
.col-m-1 {width: 8.33%;}
.col-m-2 {width: 16.66%;}
.col-m-3 {width: 25%;}
.col-m-4 {width: 33.33%;}
.col-m-5 {width: 41.66%;}
.col-m-6 {width: 50%;}
.col-m-7 {width: 58.33%;}
.col-m-8 {width: 66.66%;}
.col-m-9 {width: 75%;}
.col-m-10 {width: 83.33%;}
.col-m-11 {width: 91.66%;}
.col-m-12 {width: 100%;}
}
@media only screen and (min-width: 768px) {
/* For desktop: */
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}
}
th{
border-width: 3px;
border-color: red;
border-style: solid;
padding: 8px;
background-color: white;
font-size: 130%;
}
th.food{
padding: 8px;
padding-top: 3px;
background-color: white;
border-radius: 600px;
padding-top: 8px;
}
img{
width: 350px;
height: 200px;
}
h1{
text-align: center;
color: #cc0000;
margin: auto;
background-color: white;
border-color: red;
margin-bottom: -10px;
font-size: 250%;
width: 100px;
border-radius: 1015px;
padding: 5px;
padding-left: 10px;
padding-right: 10px;
}
a{
color: blue;
}
table{
font-family: "Palatino";
margin-bottom: -5px;
}
body{
background-color: red;
}
ul{
list-style-type: square;
}
td{
background-color: white;
border-color: red;
border-style: solid;
border-width: 3px;
}
p{
text-align: center;
}