-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (64 loc) · 1.12 KB
/
style.css
File metadata and controls
79 lines (64 loc) · 1.12 KB
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
body {
background-color: rgb(249, 237, 222);
}
.title {
font-weight: bold;
text-align: center;
font-family: Helvetica;
}
.recipelist {
text-align: center;
font-family: monospace;
list-style-type: none;
}
pre {
align-content: baseline;
}
.ascii{
font-family: monospace;
font-weight: 600;
color: rgb(143, 44, 44);
display: flex;
justify-content: center;
align-items: center;
height: 70vh;
margin: 0;
}
div.container {
text-align: center;
}
li.recipelist {
float: left;
}
ul.recipelist {
display: inline-block;
text-align: left;
}
li.recipelist a {
display: inline-block;
color: rgb(72, 162, 104);
text-align: center;
padding: 25px 80px;
text-decoration: none;
}
li.recipelist a:hover {
color: rgb(93, 246, 136);
}
.center{
display: block;
margin-left: auto;
margin-right: auto;
border: 2px solid rgb(143, 44, 44)
}
h3 {
color: rgb(143, 44, 44);
font-family: monospace;
}
p {
color: rgb(72, 162, 104);
font-family: monospace;
}
#recipe {
font-family: monospace;
padding: 20px 16px;
}