forked from sirLisko/pizzaclub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
73 lines (73 loc) · 1.06 KB
/
style.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
70
71
72
73
body {
background-color: tomato;
color: #FFF;
font-family: 'Open Sans', sans-serif;
text-align: center;
}
body:after {
background-image: url(pizza.svg);
background-position: center center;
background-repeat-x: no-repeat;
background-size: contain;
bottom: 0;
content: '';
left: 0;
opacity: 0.1;
position: fixed;
right: 0;
top: 0;
z-index: -1;
}
h1 {
color: #FFF;
font-family: 'Oswald',sans-serif;
font-size: 70px;
letter-spacing: 1px;
text-align: center;
}
ul {
padding: 0;
}
a {
color: #FFF;
}
.pizza {
list-style-type: none;
margin: 70px auto;
max-width: 500px;
padding: 0;
width: 95%;
}
.pizza__pizzeria {
background: #FFF;
border-radius: 5px;
color: tomato;
font-size: 20px;
font-weight: bold;
padding: 5px;
}
.pizza img {
width: 200px;
height: 200px;
}
.pizza__pic {
border-radius: 100%;
border: solid 5px #FFF;
padding: 5px;
}
.pizza__note {
font-style: italic;
}
.pizza svg {
display: inline-block;
fill: currentColor;
height: 50px;
width: 50px;
}
.footer {
line-height: 1.5;
padding: 0 20px;
}
.footer span {
white-space: nowrap;
}