-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
70 lines (59 loc) · 998 Bytes
/
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
* {
box-sizing: border-box;
}
body {
font-family: sans-serif;
margin: 2em 1em;
line-height: 1.5em;
}
h1 {
font-weight: 900;
color: #ff9e4a;
line-height: 1.1;
font-size: 3em;
}
form {
background-color: #eee;
border: #C1C1C1 solid 1em;
display: grid;
grid-gap: 1em;
padding: 1em;
max-width: 80%;
max-height: 60%;
}
label {
font-style: italic;
font-size: 1.5em;
}
.center {
text-align: center;
}
.otherCenter {
margin-left: auto;
margin-right: auto;
}
form button {
display: inline;
background-color: #bbbbf2;
border: 2px solid currentColor;
border-radius: 0.25em;
cursor: pointer;
font-size: inherit;
line-height: 1.4em;
padding: 0.25em 1em;
max-width: 20ch;
}
form button:hover {
background-color: lavender;
}
#breed {
font-size: 1.5em;
}
#btn {
font-size: 1.25em;
}
footer {
margin-top: 3em;
padding-top: 1.5em;
border-top: 1px solid lightgrey;
}