Skip to content

Commit f252190

Browse files
authored
Merge pull request #23 from felixfontein/hero-css
Restore hero CSS
2 parents 2d49b84 + 96ea063 commit f252190

1 file changed

Lines changed: 43 additions & 0 deletions

File tree

assets/scss/_styles_project.scss

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,46 @@ https://www.docsy.dev/docs/content/lookandfeel/#project-style-files
2323
display: none;
2424
}
2525
}
26+
27+
.flex {
28+
display: flex;
29+
}
30+
31+
.flex-column {
32+
flex-direction: column;
33+
}
34+
35+
.align-items-center {
36+
align-items: center;
37+
}
38+
39+
.hero-tags {
40+
padding: 7px 20px;
41+
color: #9ca3af;
42+
background-color: #14151a;
43+
border-radius: 0.5rem;
44+
cursor: pointer;
45+
// overflow-wrap: break-word;
46+
// word-wrap: break-word;
47+
display: inline-block;
48+
margin-bottom: 10px;
49+
}
50+
51+
.hero-text-secondary {
52+
width: 65%;
53+
margin-top: 10px;
54+
color: white;
55+
font-weight: 300;
56+
font-size: larger;
57+
}
58+
59+
[data-bs-theme="light"] {
60+
.hero-tags {
61+
color: gray;
62+
background-color: white;
63+
}
64+
65+
.hero-text-secondary {
66+
color: black;
67+
}
68+
}

0 commit comments

Comments
 (0)