-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
217 lines (197 loc) · 5.6 KB
/
style.css
File metadata and controls
217 lines (197 loc) · 5.6 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
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
@import url('https://fonts.googleapis.com/css2?family=PT+Serif&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Courgette&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Monoton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IM+Fell+English+SC&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Graduate&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Grenze+Gotisch&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rye&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Strait&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merienda:wght@700&display=swap');
body {
background-image: url('./images/bg1.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% 100%;
}
.members h1{
font-family: 'IM Fell English SC', serif;
padding:45px;
font-size: 42px;
padding-bottom: 30px;
text-align: center;
text-transform: uppercase;
font-weight: 700;
background: linear-gradient(to right,#0c70c7 10%, #202283 50%, #0541af 60%);
background-size: auto auto;
background-clip: border-box;
background-size: 200% auto;
color: #fff;
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: textclip 8s linear infinite;
}
@keyframes textclip {
to {
background-position: 200% center;
}
}
.container {
position: relative;
width: 50%;
margin-left: 90px;
animation: 4s fadeInLeft;
}
.flex{
display: flex;
}
.btn {
border: none;
background-color: none;
background:none;
padding: 8px 15px;
font-size: 16px;
cursor: pointer;
}
.custom-color{
background: #005C97; /* fallback for old browsers */
background: -webkit-linear-gradient(to left, #005C97, #363795); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #005C97, #363795); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.success {
border-color: none;
color: #064cb4;
font-weight: 600;
font-family: 'PT Serif', serif;
font-size: 21px;
}
.success:hover {
transition: .3s ease;
background-color: #3633f5;
color: white;
font-weight: 500;
border-radius: 8px;
box-shadow: 2px 3px 4px 2px rgb(106, 106, 109);
}
.image {
opacity: 1;
display: block;
width: 70%;
height: auto;
transition: .5s ease;
backface-visibility: hidden;
border-radius: 8px;
box-shadow: 2px 4px 14px 3px rgb(141, 136, 136);
}
.middle {
transition: .5s ease;
opacity: 0;
position: absolute;
top: 25%;
left: 23%;
transform: translate(-25%, -23%);
-ms-transform: translate(-25%, -23%);
text-align: center;
}
.container:hover .image {
opacity: 0.3;
}
.container:hover .middle {
opacity: 1;
}
.container h2{
padding-top: 15px;
font-family: 'Merienda', cursive;
}
.heading h2{
font-family: 'Graduate', cursive;
padding:38px;
padding-bottom: 5px;
color: #1965b1;
font-size: 48px;
}
.content{
font-family: 'Strait', sans-serif;
padding:38px;
padding-top: 15px;
font-size: 35px;
}
.content h4{
font-family: 'Courgette', cursive;
font-size: 40px;
padding-top: 5px;
}
#back-to-top-btn {
display: none;
position: fixed;
bottom: 20px;
right: 20px;
font-size: 26px;
width: 50px;
height: 50px;
background-color: #fff;
box-shadow: 1px 1px 6px rgb(75, 74, 74);
color: #333;
cursor: pointer;
outline: none;
border: 3px solid #333;
border-radius: 50%;
transition-duration: 0.2s;
transition-timing-function: ease-in-out;
transition-property: background-color, color;
}
#back-to-top-btn:hover, #back-to-top-btn:focus {
background-color: #333;
color: #fff;
}
.btnEntrance {
animation-duration: 0.5s;
animation-fill-mode: both;
animation-name: btnEntrance;
}
@keyframes btnEntrance {
from {
opacity: 0;
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
.btnExit {
animation-duration: 0.25s;
animation-fill-mode: both;
animation-name: btnExit;
}
@keyframes btnExit {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, 100%, 0);
}
}
.myfooter{
background: #141E30; /* fallback for old browsers */
background: -webkit-linear-gradient(to left, #141E30, #243B55); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #141E30, #243B55); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
background: #000000; /* fallback for old browsers */
background: -webkit-linear-gradient(to left, #000000, #3b3b3b); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #000000, #252424); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
height: 100px;
}
.myfooter h4{
color: rgb(255, 255, 255);
padding-top: 40px;
font-size: 24px;
text-align: center;
font-family: 'EB Garamond', serif;
}
@media screen and (max-width: 480px){
.flex{
display: inline;
}
}