-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.module.css
More file actions
76 lines (64 loc) · 1.17 KB
/
index.module.css
File metadata and controls
76 lines (64 loc) · 1.17 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
/*
SPDX-FileCopyrightText: Copyright 2026 Stacklok, Inc.
SPDX-License-Identifier: Apache-2.0
*/
/**
* CSS files with the .module.css suffix will be treated as CSS modules
* and scoped locally.
*/
.heroBanner {
padding: 0.75rem 0;
position: relative;
overflow: hidden;
background-color: var(--stacklok-primary) !important;
color: var(--stacklok-fluorescent);
}
.heroContainer {
display: flex;
align-items: center;
gap: 3rem;
}
.heroText {
flex: 1;
text-align: left;
}
.heroTitle {
font-family: 'Lora', Georgia, serif;
font-size: 4.75rem;
font-weight: 400;
color: var(--stacklok-white);
}
.heroSubtitle {
font-family: 'Inter', system-ui, sans-serif;
font-size: 1.25rem;
font-weight: 400;
color: var(--stacklok-cookie);
}
.heroImageWrapper {
flex: 0 0 auto;
width: 42%;
max-width: 520px;
}
.heroImage {
width: 100%;
height: auto;
display: block;
}
@media (max-width: 768px) {
.heroContainer {
flex-direction: column;
gap: 1.5rem;
}
.heroText {
text-align: center;
}
.heroImageWrapper {
width: 80%;
max-width: 360px;
}
}
.buttons {
display: flex;
align-items: center;
justify-content: flex-start;
}