First section of index page!
This commit is contained in:
parent
45e0d5fca3
commit
09c21184c5
7 changed files with 25 additions and 8 deletions
2
.kdev4/Omegamma.kdev4
Normal file
2
.kdev4/Omegamma.kdev4
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
[Project]
|
||||||
|
VersionControlSupport=kdevgit
|
|
@ -1,4 +1,4 @@
|
||||||
{{ define "main" }}
|
{{ define "main" }}
|
||||||
|
<div style="background: #A08888">
|
||||||
<h1>Test</h1>
|
<h1>Test</h1>
|
||||||
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
<link rel="stylesheet" href="/css/common.css">
|
<link rel="stylesheet" href="/css/common.css">
|
||||||
<link rel="stylesheet" href="/css/header.css">
|
<link rel="stylesheet" href="/css/header.css">
|
||||||
<link rel="stylesheet" href="/css/footer.css">
|
<link rel="stylesheet" href="/css/footer.css">
|
||||||
|
<link rel="stylesheet" href="/css/sections.css">
|
||||||
<link rel="stylesheet" href="/css/font.css">
|
<link rel="stylesheet" href="/css/font.css">
|
||||||
{{ hugo.Generator }}
|
{{ hugo.Generator }}
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
|
5
layouts/partials/section1.html
Normal file
5
layouts/partials/section1.html
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
|
||||||
|
<section style="background: url({{ .Image }}); background-size: cover; background-repeat: no-repeat; color: black; padding-left: 1em; padding-top: 1em; padding-right: 1em;">
|
||||||
|
{{ .Content | safeHTML }}
|
||||||
|
<div class="section-end-triangle"></div>
|
||||||
|
</section>
|
|
@ -8,7 +8,10 @@ body {
|
||||||
--footer-background: #111111;
|
--footer-background: #111111;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a[role=button] {
|
||||||
|
text-decoration: none;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
.center {
|
.center {
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
|
|
|
@ -40,11 +40,6 @@ nav .navbar-list {
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
||||||
a[role=button] {
|
|
||||||
text-decoration: none;
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-list li {
|
.navbar-list li {
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
|
@ -84,6 +79,7 @@ a[role=button] {
|
||||||
|
|
||||||
.nav-mobile {
|
.nav-mobile {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-brand {
|
.navbar-brand {
|
||||||
|
|
10
static/css/sections.css
Normal file
10
static/css/sections.css
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
.section-end-triangle {
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
border-top-width: 3em;
|
||||||
|
border-top-style: solid;
|
||||||
|
border-top-color: transparent;
|
||||||
|
border-right-width: 100vw;
|
||||||
|
border-right-style: solid;
|
||||||
|
border-right-color: #FFFFFF;
|
||||||
|
}
|
Loading…
Reference in a new issue