-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
54 lines (47 loc) · 1.05 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
html {
box-sizing: border-box;
}
body {
background: linear-gradient(to right, red, white, green);
}
h1 {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 50px;
text-align: center;
margin-top: auto;
font-weight: lighter;
text-shadow: 2px 5px 10px;
padding: 10px;
}
ul {
list-style-type: none;
padding-left: 20px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 20px auto
}
li {
font-size: 20px;
padding: 25px;
border: 2px solid gray;
border-radius: 5px;
margin-bottom: 5px;
text-align: center;
}
.la {
background-image: url(images/Lasaña.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
.pi {
background-image: url(images/margarita.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
.ri {
background-image: url(images/risotto.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}