-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlaunch.css
More file actions
44 lines (37 loc) · 803 Bytes
/
launch.css
File metadata and controls
44 lines (37 loc) · 803 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
44
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #f9f9f9, #e6f0ff);
padding: 40px;
text-align: center;
}
h1 {
font-size: 36px;
color: #333;
}
p {
font-size: 18px;
max-width: 600px;
margin: auto;
color: #555;
}
.highlight {
color: #ff9900;
font-weight: bold;
}
.btn {
margin-top: 90px;
display: inline-block;
padding: 10px 30px;
font-size: 20px;
background: #ff9900;
color: white;
border: none;
border-radius: 9px;
text-decoration: none;
/* transition: background 0.3s ease; */
}
.btn:hover {
cursor: pointer;
background:black;
font-weight: 700;
}