-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcnidaria.css
More file actions
116 lines (97 loc) · 1.58 KB
/
cnidaria.css
File metadata and controls
116 lines (97 loc) · 1.58 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
body {
font-family: 'Roboto', sans-serif;
font-weight: 300;
}
header {
padding: 20px 0;
}
header .row,
footer .row {
display: flex;
align-items: center;
}
header h1 {
font-weight: 700;
margin: 0;
}
header nav {
display: flex;
justify-content: flex-end;
}
header a {
padding: 0 20px;
margin: 5px;
color: black;
}
header a:hover {
text-decoration: none;
color: black;
}
.jumbotron {
display: flex;
align-items: center;
background-image: url("https://zoology2014peter.weebly.com/uploads/2/6/1/6/26160529/159557042_orig.jpg");
background-size: cover;
height: 500px;
text-shadow: 0.5px 0.5px 0.1px black;
opacity: .8;
}
.jumbotron h2 {
font-size: 60px;
font-weight: 20;
text-shadow: 3px 3px 4px black;
margin: 0;
color: #fff;
}
.jumbotron h3 {
margin: 0 0 20px;
text-shadow: 5px 5px 5px black;
color: #fff;
}
footer {
font-size: 12px;
padding: 20px 0;
}
footer .col-sm-8 {
display: flex;
justify-content: flex-end;
}
footer ul {
list-style: none;
}
footer li img {
width: 32px;
height: 32px;
}
.dropbtn {
padding: 0 20px;
margin: 5px;
color: black;
border: none;
background-color: white;
}
.dropdown {
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 160px;
z-index: 1;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
.dropdown:hover .dropdown-content {
display: block;
}
img{
height: 300px;
width: 400px;
padding: 10px;
}