Skip to content

Commit 8292a9e

Browse files
committed
DDSDDD
1 parent 96771a2 commit 8292a9e

File tree

5 files changed

+8
-43
lines changed

5 files changed

+8
-43
lines changed

assets/scss/common/_custom.scss

Lines changed: 1 addition & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,7 @@
11
// Put your custom SCSS code here
2-
//Header
3-
header.navbar {
4-
background-color: #262829;
5-
6-
}
7-
8-
li.nav-item a.nav-link, #buttonColorMode, #searchToggleDesktop {
9-
color: #FFFFFF;
10-
}
11-
122
.navbar-brand > img {
133
height: 40px;
144
}
155

16-
//section
17-
.container-lg{
18-
background: url("../../section_bg.png");
19-
background-repeat: no-repeat;
20-
background-position: center;
21-
background-size: cover;
22-
}
23-
a.rounded-pill{
24-
color: #fff !important;
25-
border-radius: 8px !important;
26-
}
27-
[data-bs-theme="dark"] .btn-primary {
28-
background-color: #1d9de6 !important;
29-
border: #1d9de6;
30-
}
31-
section.section-features>.container>.row>.col-lg-5 {
32-
background-color: #F5F4F4;
33-
margin: 10px;
34-
border-radius: 8px;
35-
}
36-
[data-bs-theme="dark"] .section.section-features>.container>.row>.col-lg-5 {
37-
background-color: #000000;
38-
}
396

40-
//footer
41-
footer {
42-
background-color: #262829;
43-
}
44-
footer .text-muted{
45-
color: #fff !important;
46-
}
7+

assets/scss/common/_variables-custom.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,7 @@
22

33
$primary: #0092E5;
44
$secondary: #5D7489;
5+
$dark: #262829;
6+
$info: #F5F4F4;
57

6-
$navbar-light-color: red;
8+
$navbar-dark-color: #FFFFFF;

hugo_stats.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,9 @@
6464
"DocSearch-Label",
6565
"active",
6666
"anchor",
67+
"bg-dark",
6768
"bg-dots",
69+
"bg-info",
6870
"blog",
6971
"blog-header",
7072
"btn",

layouts/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ <h2>{{ .Params.lead | safeHTML }}</h2>
2929
<section class="section section-md section-features">
3030
<div class="container">
3131
<div class="row justify-content-center text-center">
32-
<div class="col-lg-5">
32+
<div class="col-lg-5 bg-info">
3333
<h2 class="h4">Unified Persistence</h2>
3434
<p>Experience the flexibility of SQL Mappers with the robustness of ORM in a single framework. Why compromise when you can harness the strengths of both?</p>
3535
</div>

layouts/partials/header/header.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<div class="header-bar"></div>
1111
{{ end -}}
1212

13-
<header class="navbar navbar-expand-lg">
13+
<header class="navbar navbar-expand-lg bg-dark">
1414
{{ with site.Params.doks.containerBreakpoint -}}
1515
<div class="container-{{ . }}">
1616
{{ else -}}

0 commit comments

Comments
 (0)