-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdinner.css
More file actions
45 lines (45 loc) · 765 Bytes
/
dinner.css
File metadata and controls
45 lines (45 loc) · 765 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
body {
font-family: Arial, Helvetica, sans-serif;
background-color: #202020;
color: white;
}
a, a:visited, .clickable {
color: #80ff80;
text-decoration: none;
}
label {
display: inline-block;
text-align: right;
margin-right: 30px;
font-weight: bold;
}
input {
width: 180px;
margin-top: 15px;
}
h1 {
font-size: 36px;
font-weight: bold;
}
button {
margin-top: 30px;
height: 96px;
width: 180px;
background-color: #20c020;
font-size: 54px;
font-weight: bold;
}
button:hover {
background-color: #a0ffa0;
}
#results {
height: 600px;
width: 100%;
font-size: 24px;
overflow-y: auto;
scrollbar-gutter: stable;
background-color: black;
}
.clickable:hover {
cursor:pointer;
}