-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathWelcome.css
More file actions
43 lines (38 loc) · 819 Bytes
/
Welcome.css
File metadata and controls
43 lines (38 loc) · 819 Bytes
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
.welcome-page {
text-align: center;
padding: 4rem 2rem;
background: linear-gradient(to bottom right, #ff69b4, #ffc0cb);
color: white;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
}
.welcome-page h1 {
font-size: 3rem;
margin-bottom: 1rem;
}
.tagline {
font-size: 1.4rem;
margin-bottom: 2rem;
font-style: italic;
}
.welcome-buttons .btn {
margin: 1rem;
padding: 1rem 2rem;
background-color: white;
color: #ff1493;
border: none;
border-radius: 8px;
font-weight: bold;
text-decoration: none;
transition: transform 0.2s ease;
}
.welcome-buttons .btn:hover {
transform: scale(1.05);
}
.welcome-buttons .btn.light {
background-color: transparent;
color: white;
border: 2px solid white;
}