forked from MultiverseLearningProducts/Culinary-Chronicles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (49 loc) · 1011 Bytes
/
Copy pathstyle.css
File metadata and controls
59 lines (49 loc) · 1011 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
* {
background-color: lightsteelblue;
}
h2 {
text-align: center;
margin-right: 30px;
}
.page-title {
font-weight: bold;
text-shadow: 1px 1px 2px steelblue;
}
.page-subtitle, .page-title {
text-align: center;
text-shadow: 1px 1px 2px steelblue;
}
h2 {
margin-left: 38px;
text-shadow: 1px 1px 2px steelblue;
}
.cuisine-list, .dish-list {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
justify-content: center;
font-size: 20px;
list-style-position: inside;
padding: 0;
}
.cuisine-list li, .dish-list li {
margin-bottom: 10px;
}
.cuisine-list img, .dish-list img {
margin-bottom: 20px;
}
.recipelist {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
justify-content: center;
list-style-position: inside;
padding: 0;
}
img {
border-radius: 5px;
border-color: black;
border: 3px solid rgba(255, 255, 255, .5);
}