Change title font
This commit is contained in:
parent
530d7f7365
commit
7f262080f6
6 changed files with 25 additions and 27 deletions
|
@ -1,4 +1,9 @@
|
||||||
@charset "UTF-8";
|
@charset "UTF-8";
|
||||||
|
@font-face {
|
||||||
|
font-family: "Carter One";
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
src: url("../fonts/CarterOne.woff") format("woff"), url("../fonts/CarterOne.woff2") format("woff2"); }
|
||||||
/*! bulma.io v0.9.1 | MIT License | github.com/jgthms/bulma */
|
/*! bulma.io v0.9.1 | MIT License | github.com/jgthms/bulma */
|
||||||
/* Bulma Utilities */
|
/* Bulma Utilities */
|
||||||
@keyframes spinAround {
|
@keyframes spinAround {
|
||||||
|
@ -6798,7 +6803,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
||||||
font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; }
|
font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; }
|
||||||
|
|
||||||
.is-family-secondary {
|
.is-family-secondary {
|
||||||
font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; }
|
font-family: "Carter One" !important; }
|
||||||
|
|
||||||
.is-family-sans-serif {
|
.is-family-sans-serif {
|
||||||
font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; }
|
font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; }
|
||||||
|
|
File diff suppressed because one or more lines are too long
BIN
elections/static/elections/fonts/CarterOne.woff
Normal file
BIN
elections/static/elections/fonts/CarterOne.woff
Normal file
Binary file not shown.
BIN
elections/static/elections/fonts/CarterOne.woff2
Normal file
BIN
elections/static/elections/fonts/CarterOne.woff2
Normal file
Binary file not shown.
|
@ -3,28 +3,21 @@
|
||||||
$text: black;
|
$text: black;
|
||||||
|
|
||||||
$box-radius: 3px;
|
$box-radius: 3px;
|
||||||
$primary: hsl(219, 33%, 17%); // Dark blue
|
|
||||||
$body-background-color: hsl(0, 0%, 86%); // Light grey
|
// Dark blue
|
||||||
|
$primary: hsl(219, 33%, 17%);
|
||||||
|
|
||||||
|
// Light grey
|
||||||
|
$body-background-color: hsl(0, 0%, 86%);
|
||||||
|
|
||||||
|
// New font for title
|
||||||
|
@font-face {
|
||||||
|
font-family: "Carter One";
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
src: url("../fonts/CarterOne.woff") format("woff"), url("../fonts/CarterOne.woff2") format("woff2");
|
||||||
|
}
|
||||||
|
|
||||||
|
$family-secondary: "Carter One";
|
||||||
|
|
||||||
@import "../bulma/bulma.sass";
|
@import "../bulma/bulma.sass";
|
||||||
|
|
||||||
$primary_color: #1d2739;
|
|
||||||
$background_color: lightgrey;
|
|
||||||
|
|
||||||
// html, body {
|
|
||||||
// background: $background_color;
|
|
||||||
// font-size: 18px;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// #top-navbar {
|
|
||||||
// #logo {
|
|
||||||
// font-family: sans-serif;
|
|
||||||
// font-weight: bold;
|
|
||||||
// font-size: 40px;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// background-color: $primary_color;
|
|
||||||
// color: findColorInvert($primary_color);
|
|
||||||
// padding: 1em 2em;
|
|
||||||
// margin-bottom: 0;
|
|
||||||
// }
|
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
<body>
|
<body>
|
||||||
<nav class="level has-background-primary">
|
<nav class="level has-background-primary">
|
||||||
<div class="level-left pl-4">
|
<div class="level-left pl-4">
|
||||||
<b class="title has-text-primary-light">Kadenios</b>
|
<h1 class="has-text-primary-light is-size-1 is-family-secondary">Kadenios</h1>
|
||||||
</div>
|
</div>
|
||||||
<div class="level-right pr-4">
|
<div class="level-right pr-4">
|
||||||
<figure class="image is-64x64">
|
<figure class="image is-64x64">
|
||||||
|
|
Loading…
Reference in a new issue