-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
92 lines (77 loc) · 1.21 KB
/
styles.css
File metadata and controls
92 lines (77 loc) · 1.21 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
html, body {
margin: 0px;
padding: 0px;
font-family: Arial, sans-serif;
height: 100%;
}
h1, h2, h3 {
margin: 0px;
}
header {
background-color: #40C9A2;
color: #f2f2f2;
padding: 20px;
display: flex;
align-items: center;
}
header h1 {
flex: 1;
margin: 0;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
text-transform: uppercase;
letter-spacing: 2px;
}
.intro {
background: #5BC3EB;
padding: 25px 0;
text-align: center;
}
.intro h2 {
color: #f2f2f2;
margin-bottom: 25px;
}
.animal-types {
display: flex;
padding: 25px;
}
.animal-types section {
flex: 1;
background: #e7e7e7;
border: 1px solid #c5c5c5;
border-radius: 5px;
margin: 20px;
padding: 20px;
}
a {
background-color: #2F9C95;
color: #f2f2f2;
padding: 10px;
border-radius: 5px;
display: inline-block;
text-decoration: none;
}
a:hover {
background-color: #664147;
}
.heading-wrapper img {
width: 50px;
vertical-align: middle;
display: inline-block
}
.heading-wrapper h2 {
vertical-align: middle;
display: inline-block;
margin-left: 10px;
}
footer {
width: 100%;
background-color :#664147;
padding: 20px;
color: #f2f2f2;
}
.footer-content {
text-align: center;
}
.footer-content img {
width: 50px;
}