-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
47 lines (42 loc) · 743 Bytes
/
styles.css
File metadata and controls
47 lines (42 loc) · 743 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
45
46
47
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: white;
background-color: #0a0a0a;
}
.main {
background: linear-gradient(
180deg,
rgba(236, 89, 21, 0.1) 0%,
transparent 100%
);
min-height: 100vh;
padding: 2rem;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 2rem;
}
.heading {
font-weight: 600;
font-size: 60px;
}
.btns {
display: flex;
gap: 1rem;
}
.btns a {
text-decoration: none;
color: #ffbf86;
background: rgba(231, 255, 253, 0.1);
padding: 0.8rem 1rem;
border-radius: 10px;
font-size: 14px;
}