Skip to content

Commit 529f84e

Browse files
committed
Overpass as Heading/Subheading font, nav entries to 16px
1 parent bc670e5 commit 529f84e

File tree

5 files changed

+18
-8
lines changed

5 files changed

+18
-8
lines changed

src/components/Control.vue

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,17 @@
4242
</v-flex>
4343
<v-flex xs12 sm12>
4444
<v-btn-toggle>
45-
<v-btn flat @click.native="move(1)" v-on:mouseup="stop()">
45+
<v-btn flat v-on:mousedown="move(1)" v-on:mouseup="stop()">
4646
<v-icon>keyboard_arrow_left</v-icon>
4747
</v-btn>
48-
<v-btn flat @click.native="move(2)" v-on:mouseup="stop()">
48+
<v-btn flat v-on:mousedown="move(2)" v-on:mouseup="stop()">
4949
<v-icon>keyboard_arrow_right</v-icon>
5050
</v-btn>
5151
</v-btn-toggle>
5252
</v-flex>
5353
<v-flex xs12 sm12>
5454
<v-btn-toggle>
55-
<v-btn flat @click.native="move(3)" v-on:mouseup="stop()">
55+
<v-btn flat v-on:mousedown="move(3)" v-on:mouseup="stop()">
5656
<v-icon>keyboard_arrow_down</v-icon>
5757
</v-btn>
5858
</v-btn-toggle>
@@ -115,6 +115,7 @@ export default {
115115
this.$store.commit('toggleDrawer', !currentStatus)
116116
},
117117
move: function(direction) {
118+
console.log("move")
118119
let axios = this.$axios
119120
let CB = this.$data.CB
120121
if (direction == 0) {
@@ -160,6 +161,7 @@ export default {
160161
}
161162
},
162163
stop: function() {
164+
console.log("stopping")
163165
let axios = this.$axios
164166
let CB = this.$data.CB
165167
axios.post(CB + '/stop').then(function(response) {

src/components/Landing.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export default {
7272
font-family: 'Overpass Mono';
7373
font-weight: 600;
7474
letter-spacing: -5px;
75-
background-color: black;
75+
background-color: #070300;
7676
color: transparent;
7777
text-shadow: 3px 3px 3px rgba(255, 255, 255, 0.25);
7878
-webkit-background-clip: text;

src/components/Sidebar.vue

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,5 @@ export default {
9191
9292
</script>
9393
<style scoped>
94-
.navEntry{
95-
font-size: 15px;
96-
}
94+
9795
</style>

src/main.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ import 'material-design-icons-iconfont/dist/material-design-icons.css'
2323
import '@fortawesome/fontawesome-free/css/all.css'
2424
import 'typeface-cousine'
2525
import 'typeface-quicksand'
26+
import 'typeface-overpass'
2627
import 'typeface-overpass-mono'
2728

2829
// Components

src/main.styl

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
@import '~vuetify/src/stylus/settings/_variables'
66

77
$body-font-family = 'Open Sans'
8+
$heading-font-family = 'Overpass'
89
$button-font-weight = 600
910
$list-title-font-weight = 600
1011
$navigation-drawer-item-font-size = 40px
@@ -16,15 +17,23 @@ $font-weights = {
1617
// Components
1718
@import '~vuetify/src/stylus/main'
1819

20+
h3
21+
font-size: 20px
22+
font-family: 'Overpass'
23+
24+
1925
.v-toolbar__title
26+
font-family: 'Overpass'
2027
font-size: 24px
2128

2229
.v-tabs__div
30+
font-size: 15px
2331
font-weight: 600
2432

2533
.v-navigation-drawer
2634
.v-list .v-list__tile
27-
font-weight: 600
35+
font-weight: 500
36+
font-size: 16px
2837

2938
.v-icon
3039
font-weight: 500

0 commit comments

Comments
 (0)