fancy-font is renamed to main and now used

This commit is contained in:
undergroundwires
2020-01-09 18:54:01 +01:00
parent ed872ef3d9
commit 6825001c61
5 changed files with 6 additions and 6 deletions

View File

@@ -55,7 +55,7 @@ export default class App extends Vue {
body { body {
background: $light-gray; background: $light-gray;
font-family: $fancy-font; font-family: $main-font;
color: $slate; color: $slate;
} }

View File

@@ -49,6 +49,7 @@ export default class CardList extends StatefulVue {
.cards { .cards {
display: flex; display: flex;
flex-flow: row wrap; flex-flow: row wrap;
font-family: $main-font;
.card { .card {
} }
@@ -57,6 +58,6 @@ export default class CardList extends StatefulVue {
width: 100%; width: 100%;
text-align: center; text-align: center;
font-size: 3.5em; font-size: 3.5em;
font: $normal-font; font-family: $normal-font;
} }
</style> </style>

View File

@@ -1,6 +1,6 @@
<template> <template>
<div class="container"> <div class="container">
<div class="part">Select:</div> <div class="part select">Select:</div>
<div class="part"> <div class="part">
<SelectableOption <SelectableOption
label="None" label="None"
@@ -95,7 +95,6 @@ export default class TheSelector extends StatefulVue {
flex-direction: row; flex-direction: row;
flex-wrap: wrap; flex-wrap: wrap;
align-items:flex-start; align-items:flex-start;
.part { .part {
display: flex; display: flex;
margin-right:5px; margin-right:5px;

View File

@@ -43,8 +43,8 @@ export default class TheHeader extends StatefulVue {
margin: 0; margin: 0;
color: $black; color: $black;
text-transform: uppercase; text-transform: uppercase;
font-family: $main-font;
font-size: 2.5em; font-size: 2.5em;
font-weight: 500;
line-height: 1.1; line-height: 1.1;
} }
.subtitle { .subtitle {

View File

@@ -30,4 +30,4 @@
$normal-font: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace; $normal-font: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace;
$artistic-font: 'Yesteryear', cursive; $artistic-font: 'Yesteryear', cursive;
$fancy-font: 'Slabo 27px'; $main-font: 'Slabo 27px';