-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpizza.css
More file actions
64 lines (53 loc) · 969 Bytes
/
pizza.css
File metadata and controls
64 lines (53 loc) · 969 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
60
61
62
63
64
.top-header {
background-image: url("delicious-pizza.jpg");
background-color: #cccccc;
height: 100px;
font: Ariel;
color: white;
font-size: 250%;
}
#pizza-title {
background-color: lightblue;
height: 50px;
font: Ariel;
color: white;
font-size: 200%;
}
#topping-title {
background-color: lightseagreen;
height: 50px;
font: Ariel;
color: white;
font-size: 200%;
}
#pizza-list {
float: left;
width: 50%;
}
#topping-list {
float: right;
width: 50%;
}
.pizza {
background-color: #cccccc;
color: blue;
border: 1px solid black;
}
.topping {
background-color: #cccccc;
color: purple;
border: 1px solid black;
}
.pizza-topping {
background-color: #c1c1c1;
color: purple;
font-size: small;
border: 1px solid white;
}
.pizza-topping-list {
padding: 50px 50px 50px 50px;
}
.pizza-button {
background-color: #ffffff;
color: green;
}