-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWelcome.css
More file actions
55 lines (55 loc) · 1.18 KB
/
Welcome.css
File metadata and controls
55 lines (55 loc) · 1.18 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
*{
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
text-align: center;
padding: 0;
}
.welcome-page {
height: 100vh;
background: linear-gradient(to right top, rgba(161,161,161,0.5), rgba(132,180,215,0.5), rgba(0, 209, 227, 0.5), rgba(0, 230, 161, 0.5), rgba(168, 235, 18, 0.5));
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
padding-top: 70px;
transition: all 1s ease;
}
.welcome-page h1 {
color: #000000;
font-size: 6em;
margin-bottom: 50px;
}
.welcome-page h2 {
color: #000000;
font-size: 3em;
margin-bottom: 20px;
}
.searchNav-button {
background-color: #ffffff;
border-radius: 50%;
padding: 15px;
cursor: pointer;
box-shadow: 0 4px 8px rgba(0,0,0,0.6);
transition: background 0.3s ease;
}
.searchNav-button img {
width: 50px;
height: 50px;
}
.attribution
{
margin-top: 300px;
font-size: 5px;
color: #ffffff;
}
.fade-out {
animation: fadeOut 1s forwards;
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}