-
Notifications
You must be signed in to change notification settings - Fork 22
/
styles.css
97 lines (90 loc) · 1.69 KB
/
styles.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
body{
background-color: goldenrod;
}
h1{
text-align: center;
font-family: 'Snell Roundhand', cursive;
font-weight: 900;
font-size: 50px;
}
#pizzaImg{
position: relative;
height: 300px;
margin: 0 auto;
display: block;
}
#pizzaLink{
text-decoration: none;
color: red;
text-align: center;
display: block;
padding: 20px 0 0 0;
}
main{
margin: 20px auto;
width: 50%;
border: 1px solid black;
padding-bottom: 30px;
background-color: antiquewhite
}
h2{
text-align: center;
font-family: 'Snell Roundhand', cursive;
}
ul{
margin: 0;
padding: 0;
}
.pizzaCategory, .saladCategory, .dessertCategory {
border: 1px solid black;
list-style: none;
margin: 0 auto;
width: 60%;
padding-bottom: 20px;
}
.pizzaCategory p, .saladCategory p, .dessertCategory p {
font-size: 20px;
text-align: center;
font-family: cursive;
margin: 5px 0 0;
}
table{
border: 1px solid black;
margin: 0 auto;
border-collapse:collapse;
}
th, td{
border-bottom: 1px solid black;
border-right: 1px solid black;
padding: 10px;
}
#orderBtn{
width: 300px;
height: 50px;
border-radius: 0;
background-color: green;
font-size: 20px;
color: white;
margin: 20px auto 0;
display: block;
cursor: pointer;
}
#orderBtn:hover{
background-color: rgb(49, 142, 49);
}
footer{
background-color: lightgrey;
display: inline-block;
position: absolute;
width: 99%;
left: 0;
padding: 10px;
}
/* --------------------------------------------------------- */
.boldThis{
font-weight: 900;
color: purple;
}
.updateOrderBtn{
background-color: hotpink !important;
}