-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
160 lines (133 loc) · 2.63 KB
/
index.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
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
body {
background-color: #cfe3d7;
}
h1 {
font-family: Manrope-Bold;
display: flex;
justify-content: center;
align-items: center;
max-height: 200%;
}
h2 {
font-family: Manrope-Bold;
display: flex;
justify-content: center;
align-items: center;
max-height: 200%;
}
p {
display: flex;
text-align: center;
justify-content: center;
align-items: center;
max-height: 200%;
}
hr {
width: 50%;
align-content: center;
border: 2.5px solid black;
border-radius: 100px;
}
@font-face {
font-family: Manrope;
src: url(Manrope-Regular.ttf);
}
@font-face {
font-family: Manrope-Bold;
src: url(Manrope-Bold.ttf);
}
div {
font-family: Manrope;
}
div.birds {
margin: auto;
width: 50%;
padding: 10px;
}
div.gallery {
margin: 15px;
border: 0px;
float: left;
width: 200px;
}
div.gallery:hover {
border: 0px;
border-radius: 15px;
background-color: #81b597;
}
div.gallery img {
width: 100%;
height: auto;
border-radius: 100px;
display: block;
justify-content: center;
}
div.desc {
padding: 15px;
text-align: center;
}
/* Style the header with a grey background and some padding */
.header {
overflow: hidden;
background-color: #81b597;
padding: 10px 10px;
border-radius: 10px;
}
/* Style the header links */
.header a {
float: left;
color: black;
text-align: center;
padding: 12px;
text-decoration: none;
font-size: 18px;
line-height: 25px;
border-radius: 4px;
}
/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
font-size: 25px;
font-weight: bold;
}
/* Change the background color on mouse-over */
.header a:hover {
background-color: #526b5d;
color: white;
}
/* Style the active/current link*/
.header a.active {
background-color: #288a51;
color: white;
}
/* Float the link section to the right */
.header-right {
float: left;
}
/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 500px) {
.header a {
float: none;
display: block;
text-align: left;
}
.header-right {
float: none;
}
}
.fa-dove {
font-size: 30px;
color: #288a51;
}
.logo {
pointer-events: none;
}
.footer {
position: fixed;
bottom: 0;
width: 100%;
background-color: none;
color: black;
text-align: left;
font-size: 18px;
font-family: Manrope;
}