Update home page

This commit is contained in:
2021-07-29 15:36:07 +02:00
parent 8a8269718d
commit 01cc8fff4d
4 changed files with 46 additions and 23 deletions

View File

@@ -12,22 +12,22 @@
/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on July 28, 2021 */
@font-face {
font-family: 'roboto_condensedbold';
src: url('robotocondensed-bold-webfont.woff2') format('woff2'),
url('robotocondensed-bold-webfont.woff') format('woff');
src: url('../fonts/robotocondensed-bold-webfont.woff2') format('woff2'),
url('../fonts/robotocondensed-bold-webfont.woff2') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'roboto_condenseditalic';
src: url('robotocondensed-italic-webfont.woff2') format('woff2'),
url('robotocondensed-italic-webfont.woff') format('woff');
src: url('../fonts/robotocondensed-italic-webfont.woff2') format('woff2'),
url('../fonts/robotocondensed-italic-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'roboto_condensedregular';
src: url('robotocondensed-regular-webfont.woff2') format('woff2'),
url('robotocondensed-regular-webfont.woff') format('woff');
src: url('../fonts/robotocondensed-regular-webfont.woff2') format('woff2'),
url('../fonts/robotocondensed-regular-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}

View File

@@ -13,6 +13,7 @@ body {
height: 100%;
display: flex;
flex-direction: column;
scroll-behavior: smooth;
}
main {
flex: 1 0 auto;
@@ -22,6 +23,7 @@ main {
header {
background-size: cover;
background-position: center;
background-attachment: fixed;
background-repeat: no-repeat;
width: 100%;
min-height: 930px;
@@ -55,10 +57,12 @@ header {
min-width: 50%;
}
#title button {
min-width: 100%;
background-color: transparent;
min-width: 80%;
color: #fff;
border: none;
background-color: transparent;
border: 1px solid #fff;
border-radius: 4px;
padding: 3px 0;
font-size: 0.9rem;
cursor: pointer;
}
@@ -68,7 +72,7 @@ header {
}
#nav {
max-height: 50px;
position: absolute;
position: fixed;
top: 0;
width: 100%;
}
@@ -78,13 +82,13 @@ header {
}
#logo {
max-height: 41%;
padding: 7px 0 5px 20px;
padding: 7px 0 10px 20px;
}
#links {
text-align: right;
}
#links a {
color: #eee;
color: inherit;
padding: 10px;
font-size: 0.85rem;
text-decoration: none;

View File

@@ -3169,7 +3169,7 @@ a.text-secondary:visited {
}
.text-gray {
color: #bcc3ce !important;
color: #eee !important;
}
a.text-gray:focus,
@@ -3251,6 +3251,12 @@ a.text-error:visited {
color: #fff;
}
/** Custom **/
.bg-white {
background: #fff;
color: #333 !important;
}
.bg-secondary {
background: #f1f1fc !important;
}