Skip to content

Commit

Permalink
Setted secondary font type
Browse files Browse the repository at this point in the history
  • Loading branch information
NoxLP committed Mar 19, 2021
1 parent b1f878f commit e517d2f
Show file tree
Hide file tree
Showing 6 changed files with 59 additions and 23 deletions.
10 changes: 6 additions & 4 deletions src/components/Timeslide.vue
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
:key="idx"
dark
color="hsl(255, 63%, 8%)"
class="ml-0 pl-0"
class="ml-0 pl-0 font-hind text-capitalize"
>
<template v-slot:icon>
<v-avatar>
Expand Down Expand Up @@ -260,13 +260,13 @@ export default {
},
categoriesOnChange: async function() {
console.log('categoriesOnChange ', this.model, this.timeLineItems)
const limit = 5
const limit = 10
const categoryNumber = this.model
const currentCategory = CATEGORIES[this.model].name
if (
!this.timelineBuffer[currentCategory] ||
this.timelineBuffer[currentCategory].length < 5
this.timelineBuffer[currentCategory].length < limit
) {
console.log('*********** no session: ', this.timelineBuffer)
Expand Down Expand Up @@ -326,7 +326,9 @@ export default {
</script>

<style scoped>
/*timeline divider color*/
.font-hind {
font-family: Hind;
}
.theme--dark.v-timeline:before {
background: #e7c296;
}
Expand Down
28 changes: 21 additions & 7 deletions src/views/Event.vue
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,10 @@
</v-row>
</template>
<!--TEXTO-->
<div class="description text-body-1 text-sm-h5" color="white--text">
<div
class="description text-body-1 text-sm-h5 font-hind"
color="white--text"
>
{{ event.description }}
</div>
<!--FOOTER FAV Y PENCIL-->
Expand Down Expand Up @@ -233,9 +236,11 @@
</h5>
</template>
<!--TEXTO-->
<span style="white-space: pre-line" class="text-left">{{
comment.text
}}</span>
<span
style="white-space: pre-line"
class="text-left font-hind-comments"
>{{ comment.text }}</span
>
<!--BOTONES-->
<template v-slot:actions>
<v-row justify="center" align="center">
Expand Down Expand Up @@ -292,9 +297,11 @@
</h5>
</template>
<!--TEXTO-->
<span style="white-space: pre-line" class="text-left">{{
reply.text
}}</span>
<span
style="white-space: pre-line"
class="text-left font-hind-comments"
>{{ reply.text }}</span
>
<!--BOTONES-->
<template v-slot:actions>
<v-row justify="end" align="center">
Expand Down Expand Up @@ -493,6 +500,13 @@ export default {
</script>

<style scoped>
.font-hind {
font-family: Hind;
}
.font-hind-comments {
font-family: Hind;
font-size: 18px;
}
html {
height: 100%;
/*background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);*/
Expand Down
15 changes: 11 additions & 4 deletions src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@
:key="idx"
@click="onClickOnCarouselItem(idx)"
>
<v-row class="fill-height" align="center" justify="center">
<v-row
class="fill-height font-hind"
align="center"
justify="center"
>
<v-progress-circular
v-show="!item.img"
indeterminate
Expand All @@ -36,16 +40,16 @@
class="slide-img"
>
<v-row align="center" justify="start" class="mt-4">
<h1 class="white--text mt-5 ml-10 title-text">
<h1 class="white--text mt-5 ml-10 title-text text-capitalize">
{{ $moment(new Date(item.date)).fromNow() }}
</h1>
<h1 class="white--text mt-5 ml-10 title-text">
<h1 class="white--text mt-5 ml-10 title-text text-capitalize">
{{ item.title }}
</h1>
</v-row>
<v-row align="center" justify="start" height="20">
<h3
class="white--text mt-5 ml-10 d-block text-truncate"
class="white--text mt-5 ml-10 d-block text-truncate text-capitalize"
style="max-width: 40vw;"
>
{{ item.description }}
Expand Down Expand Up @@ -125,6 +129,9 @@ export default {
</script>

<style scoped>
.font-hind {
font-family: Hind;
}
.Glass {
/*background: rgba(255, 255, 255, 0.25);*/
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37) !important;
Expand Down
3 changes: 3 additions & 0 deletions src/views/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,9 @@ export default {
</script>

<style scoped>
.font-hind {
font-family: Hind;
}
.login-card {
margin: 6vw 12vw 2vw 12vw !important;
/* height: 36vh !important; */
Expand Down
3 changes: 3 additions & 0 deletions src/views/Signup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,9 @@ export default {
</script>

<style scoped>
.font-hind {
font-family: Hind;
}
.signup-card {
margin: 6vw 12vw 2vw 12vw !important;
}
Expand Down
23 changes: 15 additions & 8 deletions src/views/Userprofile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,21 @@
</h1>
</v-col>
<v-col cols="3">
<h3>
<v-row>
<v-row>
<h3>
{{ user.email }}
</v-row>
<v-row>
</h3>
</v-row>
<v-row>
<h3>
{{ user.job }}
</v-row>
<v-row>
</h3>
</v-row>
<v-row>
<h3>
{{ user.location }}
</v-row>
</h3>
</h3>
</v-row>
</v-col>
</v-row>
</template>
Expand Down Expand Up @@ -225,6 +229,9 @@ export default {
}
</script>
<style scoped>
.font-hind {
font-family: Hind;
}
.starchild-text {
font-family: Julius Sans One;
font-style: normal;
Expand Down

0 comments on commit e517d2f

Please sign in to comment.