-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreateZooStyle.css
More file actions
134 lines (120 loc) · 2.07 KB
/
createZooStyle.css
File metadata and controls
134 lines (120 loc) · 2.07 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/*ZooAdvisor Title*/
body {
background-color: orange;
}
header {
font-family: Verdana;
font-weight: bold;
font-size: 35px;
color: black;
text-align: left;
margin: 10px;
}
hr {
border: 3px solid black;
}
/*Menu Button*/
.menu {
display: inline-table;
margin-left: 13px;
margin-top: 5px;
}
.bar1, .bar2, .bar3 {
width: 35px;
height: 5px;
background-color: black;
margin: 6px 0;
transition: 0.4s;
}
/*Rotate first bar.*/
.change .bar1 {
-webkit-transform: rotate(-45deg) translate(-9px, 6px);
transform: rotate(-45deg) translate(-9px, 6px);
}
/*Fade second bar.*/
.change .bar2 {
opacity: 0;
}
/*Rotate third bar.*/
.change .bar3 {
-webkit-transform: rotate(45deg) translate(-8px, -8px);
transform: rotate(45deg) translate(-8px, -8px);
}
/*Menu Listings*/
.topnav {
display: inline-block;
overflow: hidden;
position: static;
}
.links #myLinks {
display: none;
}
.links a {
display: inline-block;
color: black;
text-decoration: none;
margin-left: 35px;
font-size: 30px;
}
ul.menuList {
list-style-type: none;
margin: 0px;
padding: 0px;
text-align: center;
}
ul.menuList li {
display: inline;
font-family: Verdana;
font-size: 26px;
font-weight:bolder;
color: black;
padding-top: -90px;
}
/*Footer Sticky*/
.footer{
position: fixed;
width: 80%;
height: 90px;
left: 0;
bottom: 0;
margin: 0;
background-color: orange;
}
.footer button {
position: fixed;
left: 50%;
transform: translate(-50%, 25%);
display: inline-block;
padding: 15px 25px;
font-family: Verdana;
font-weight: bold;
font-size: 20px;
color: black;
text-align: center;
background-color: green;
border-color: black;
border-width: 3px;
}
/*Classification Listings*/
ul.classifications{
list-style-type: none;
margin: 0px;
padding: 0px;
}
ul.classifications li{
display: inline;
font-family: Verdana;
vertical-align: middle;
font-size: 25px;
font-weight: bolder;
color: black;
padding-top: -90px;
}
.amphibPic, .birdPic, .fishPic, .insectPic, .mammalPic, .reptilePic{
height: 60px;
}
a:link{
color: black;
background-color: transparent;
text-decoration: none;
}