-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
109 lines (95 loc) · 1.42 KB
/
style.css
File metadata and controls
109 lines (95 loc) · 1.42 KB
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
98
99
100
101
102
103
104
105
106
107
108
109
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Libre Baskerville", serif;
background-color: #eef1bd;
text-align: center;
}
a {
text-decoration: none;
}
a :link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a :hover {
text-decoration: none;
color: #bbd686;
}
header {
background-color: #c4a381;
}
#promptResult {
text-align: center;
padding-bottom: 10px;
}
header h1 {
text-align: center;
padding-top: 10px;
padding-bottom: 10px;
}
header li {
display: inline;
color: #eef1bd;
text-decoration: none;
margin: 30px;
padding: 2px;
}
.navbar {
background-color: #b2675e;
list-style-type: none;
text-align: center;
margin: 0px;
padding-top: 5px;
padding-bottom: 5px;
}
#radio p {
font-size: 18px;
margin-top: 15px;
margin-bottom: 8px;
}
#radio label {
padding: 5px;
}
#cart p {
padding-bottom: 8px;
font-size: 18px;
}
#cart input {
width: 75px;
font-size: 25px;
text-align: center;
}
#cart button {
width: 50px;
font-size: 25px;
text-align: center;
}
footer {
background-color: #c4a381;
text-align: center;
padding: 10px;
margin-top: 15px;
}
footer p {
font-size: 18px;
margin-bottom: 5px;
}
footer li {
display: inline;
margin: 10px;
}
img {
/* float: left; */
width: 50em;
margin: 10px;
}
#emoji {
width: 2em;
}