-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
62 lines (50 loc) · 798 Bytes
/
main.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
* {
box-sizing: border-box;
}
body {
background-color: hsl(230, 8%, 15%);
font-family: 'Montserrat';
padding: 5%;
padding-top: 20px;
padding-bottom: 20px;
margin: 0;
}
#title {
color: hsl(230, 8%, 95%);
font-size: 30px;
font-weight: bold;
}
#menu {
background-color: hsl(230, 8%, 85%);
box-shadow: 0 0 10px black;
padding-left: 5%;
padding-right: 5%;
padding-top: 20px;
padding-bottom: 20px;
}
#shortcuts > a {
width: auto;
}
table {
width: 100%;
}
th {
text-align: left;
font-weight: normal;
}
.cal {
text-align: right;
}
.anchor {
text-align: center;
}
.anchor > a{
color: black;
font-size: 25px;
}
.diner_name {
font-style: italic;
}
.meal_title {
text-decoration: underline;
}