-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
69 lines (59 loc) · 1.05 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
text-align: center;
margin-bottom: 40px;
}
#container {
position: relative;
}
img {
width: 33.33%;
opacity: 0.5;
height: auto;
float: left;
}
#header {
z-index: 1;
position: relative;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 40px;
font-weight: bolder;
}
#meals {
background-color: antiquewhite;
margin-top: 2em;
width: 80%;
display: inline-block;
border: 3px solid;
border-radius: 20% 0 20% 0;
}
li {
list-style: none;
padding: 1em 0;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
#meals>p {
font-size: 40px;
text-decoration-line: underline;
}
a {
padding: 10px;
text-decoration: none;
font-size: large;
}
a:hover {
background-color: rgba(151, 143, 71, 0.548);
border-radius: 0 0 35% 0;
z-index: -9;
}
@media (max-width:600px) {
li {
font-size: 80%;
}
}