Improve some styling stuff

This commit is contained in:
Torjus Håkestad 2021-04-11 00:17:23 +02:00
parent 135c0afb81
commit 543e6fd5ef
3 changed files with 15 additions and 9 deletions

View File

@ -43,9 +43,10 @@ export default class App extends Vue {}
</script> </script>
<style lang="scss"> <style lang="scss">
$font-stack: 'Secular One'; $font-stack-header: 'Secular One', sans-serif;
$font-stack-content: 'Rubik', sans-serif;
#app { #app {
font-family: Avenir, Helvetica, Arial, sans-serif; font-family: $font-stack-content;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
text-align: center; text-align: center;
@ -53,9 +54,17 @@ $font-stack: 'Secular One';
margin-top: 0; margin-top: 0;
} }
.navbar-brand { .navbar-brand {
font-family: 'Secular One', sans-serif; font-family: $font-stack-header;
} }
.navbar-nav a { .navbar-nav a {
font-family: 'Rubik'; font-family: $font-stack-content;
}
h1 h2 h3 {
font-family: $font-stack-header;
}
#main-content-container {
margin: 50px;
} }
</style> </style>

View File

@ -1,6 +1,6 @@
<template> <template>
<div class="attemptlist"> <div class="attemptlist">
<h1>Attempt list</h1> <h1>Live Attempts</h1>
<p> <p>
<b-table <b-table
responsive="md" responsive="md"

View File

@ -1,6 +1,6 @@
<template> <template>
<div class="stats"> <div class="stats">
<h1>Stats!</h1> <h1>Login Stats</h1>
<b-card no-body> <b-card no-body>
<b-tabs card> <b-tabs card>
<b-tab title="Totals"> <b-tab title="Totals">
@ -47,7 +47,4 @@ import StatsPie from '@/components/StatsPie.vue';
export default class Stats extends Vue {} export default class Stats extends Vue {}
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.stats {
margin: 50px;
}
</style> </style>