-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathTheFooter.vue
119 lines (103 loc) · 2.61 KB
/
TheFooter.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<template lang="pug">
<footer class="TheFooter">
OverlayLoadingLogo(animate-when="scrolled-into-view")
a(href="https://www.schoolsyst.com/").logotype-wrapper: LogoWordmark.logotype
code.version
span.channel {{ version.channel }}
span(title="Incrémentée par l'ajout de fonctionnalités").feat {{ version.feature }}.
span(title="Incrémentée lors de changements dans l'interface").ui {{ version.ui }}.
span(title="Incrémentée quand des bugs sont réglés").bug {{ version.bug }}
p.open-source
| Projet open source, code disponible chez
a(href="//github.com/schoolsyst") GitHub
br
| Créé par
a(href="https://ewen.works") Ewen Le Bihan
//- p.wakatime
//- img(title="API" src="https://wakatime.com/badge/github/schoolsyst/backend.svg")
//- span.plus-sign +
//- img(title="Application web" src="https://wakatime.com/badge/github/schoolsyst/frontend.svg")
</footer>
</template>
<script>
import { mapState } from 'vuex'
import HeadingSub from '~/components/HeadingSub.vue'
import OverlayLoadingLogo from '~/components/OverlayLoadingLogo.vue'
import LogoWordmark from '~/components/LogoWordmark.vue'
export default {
components: {
HeadingSub,
OverlayLoadingLogo,
LogoWordmark,
},
computed: {
...mapState(['version']),
},
}
</script>
<style lang="stylus" scoped>
.TheFooter
margin-top 10rem
min-height 500px
width 100%
height 50vh
+mobile
height 75vh
position relative
z-index 999
display flex
flex-direction column
justify-content center
align-items center
background var(--blue)
.OverlayLoadingLogo
width 25vw
height 25vh
//transform: scale(2)
.OverlayLoadingLogo /deep/ svg *
stroke white
.logotype
//--- margins ---
margin-bottom 30px
max-width 500px
//--- positioning ---
//--- dimensions ---
width 80%
//--- appearance ---
stroke #ffffff
.logotype-wrapper
display flex
justify-content center
align-items center
margin-top -30px
height 100px
.version
//--- margins ---
//--- appearance ---
color #ffffff
//--- positioning ---
//--- dimensions ---
font-size 15px
//--- animation ---
.version .channel
margin-right 1em
padding 0.5em
border 2px solid white
border-radius var(--border-radius)
text-transform uppercase
.open-source
margin-top 2em
color white
text-align center
a
border-color white
color white
.wakatime
display flex
align-items center
margin-top 0.5em
.plus-sign
padding 0 0.2em
color white
font-size 2em
</style>