-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
85 lines (68 loc) · 1.21 KB
/
main.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
body {
background-color: lightblue;
font-family: monospace;
}
h1 {
text-align: center;
}
#animals {
display: flex;
flex-flow: row wrap;
}
.animals-card {
text-align: center;
justify-content: space-evenly;
align-content: center;
float: left;
width: 200px;
padding: 14px 16px;
text-align: center;
}
.animals-card-h2.Cat{
margin-bottom: 10px;
background-color: lightpink;
font-weight: bold;
}
.animals-card-h2.Dog{
margin-bottom: 10px;
background-color: lightsalmon;
font-weight: bold;
}
.animals-card-h2.Rat{
margin-bottom: 10px;
background-color: lightseagreen;
font-weight: bold;
}
.animals-card-footer.Cat{
margin-bottom: 10px;
background-color: lightpink;
}
.animals-card-footer.Dog{
margin-bottom: 10px;
background-color: lightsalmon;
}
.animals-card-footer.Rat{
margin-bottom: 10px;
background-color: lightseagreen;
}
.animals-card h4 {
margin-bottom: 10px;
}
.animals-card p {
margin-bottom: 10px;
}
.buttonContainer {
display: flex;
flex-flow: row wrap;
justify-content: center;
}
#catButton {
background-color: lightpink;
align-content: center;
}
#dogButton {
background-color: lightsalmon;
}
#ratButton {
background-color: lightseagreen;
}