-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
63 lines (53 loc) · 917 Bytes
/
styles.css
File metadata and controls
63 lines (53 loc) · 917 Bytes
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
/* Font properties */
.font-properties {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 20px;
color: #233247;
}
/* Block properties */
body {
background-color: #f24236;
padding: 30px;
}
.main-body {
background-color: #fbfef9;
width: 70%;
padding-top: 20px;
margin: 20px auto;
}
.head {
display: flex;
justify-content: center;
align-items: center;
}
.main-title {
font-size: 50px;
margin: 0 -10px;
}
.list {
box-sizing: border-box;
background-color: #6bd425;
width: 85%;
padding: 1em 2em;
margin: 20px auto 10px;
}
li {
padding: 5px;
}
footer {
text-align: center;
padding: 1em 1em 0.5em;
margin: 0;
}
/* Image properties */
.Odin-Logo {
height: auto;
width: 80px;
}
.mexican-food {
display: block;
height: auto;
width: 60%;
margin: 30px auto;
border: 10px solid #233247;
}