forked from nhost/nhost
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
80 lines (66 loc) · 1.25 KB
/
style.css
File metadata and controls
80 lines (66 loc) · 1.25 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
.welcome-page {
margin: 0 auto;
}
.welcome-hero {
text-align: center;
padding-top: 5rem;
padding-bottom: 2rem;
margin-bottom: 6rem;
background-color: var(--custom-background);
}
/* dark mode */
html[class~="dark"] .welcome-hero {
background-color: rgb(23, 29, 38);
color: white;
}
/* light mode */
html:not([class~="dark"]) .welcome-hero {
background-color: #f5f8ff;
color: #111827;
}
.welcome-hero h1 {
font-size: 3rem;
margin-bottom: 1.5rem;
font-weight: 700;
}
.welcome-hero p {
font-size: 1.2rem;
max-width: 600px;
margin: 0 auto 2rem;
}
.welcome-hero b {
display: inline-block;
margin-top: 1rem;
}
.welcome-hero b a {
color: var(--primary-color);
font-size: 1.1rem;
text-decoration: none;
transition: color 0.2s;
}
html[class~="dark"] .welcome-hero b a {
color: #3787ff;
}
html:not([class~="dark"]) .welcome-hero b a {
color: #1874ff;
}
.welcome-hero b a:hover {
text-decoration: underline;
}
.welcome-get-started {
margin: 0 auto;
max-width: 1000px;
}
.welcome-get-started h1 {
text-align: center;
font-size: 1.5rem;
font-weight: 600;
margin: 2.0rem;
}
html[class~="dark"] .welcome-get-started {
color: white;
}
/* light mode */
html:not([class~="dark"]) .welcome-get-started {
color: #111827;
}