summaryrefslogtreecommitdiff
path: root/static/style.css
blob: f0c3d2ae92735590f43d36a56e99a89b20e13d1d (plain)
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
html {
    background: black;
    font-family: 'Open Sans', sans-serif;
}

body {
    color: white;
}

header {
    text-align: center;
}

main {
    padding-top: 2%;
}

nav ul li a {
    color: #f1f3f3;
    font-size: smaller;
}

nav ul {
    margin: 0;
    padding: 0;
}

nav li {
    display: inline-block;
    list-style-type: none;
}

nav a {
    text-decoration: none;
    display: block;
    padding: 5px 6px 5px 6px;
    color: black;
}

#lists {
    float: left;
    padding-left: 5%;
    max-width: 45%;
}

#img-wrapper {
    float: right;
    padding-right: 5%;
    max-width: 40%;
}

img {
    max-height: 400px;
    max-width: 100%;
}

#recipe-list {
    padding-left: 30%;
    list-style-type: none;

}

#recipe-item {
    padding: 5px;
    font-size: 26px;
}