Merge branch 'project'

This commit is contained in:
2023-09-19 11:34:01 +02:00
42 changed files with 1480 additions and 332 deletions

View File

@@ -12,7 +12,7 @@ const show = ref(true)
@click="show = !show"
>
<circle
style="fill:#e65353;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path833"
cx="10"
cy="10"
@@ -27,7 +27,7 @@ const show = ref(true)
<div class="footer"
v-bind:class="show ? '' : 'hide'">
<h1>
Design
Designed
</h1>
<svg
viewBox="0 0 100 100"
@@ -208,7 +208,8 @@ M 311.63779,10 312.2454,10"/>
</template>
<style lang="scss" scoped>
@import "@/style/shared.scss";
@import '@/style/colors.scss';
@import '@/style/widths.scss';
div.footer{
position : fixed;
@@ -218,7 +219,7 @@ M 311.63779,10 312.2454,10"/>
align-items: center;
justify-content: center;
flex-wrap: wrap;
background-color: hsla(0, 0%, 1%, 0.904);
background-color: hsla(0, 0%, 0%, 0.904);
min-height:3.5em;
width: 100%;
max-width: $maxWidth;
@@ -230,6 +231,10 @@ M 311.63779,10 312.2454,10"/>
}
svg{
height: 2.5em;
& > circle{
fill:$action-normal;
transition : 0.25s;
}
}
h1{
font-size: 2em;
@@ -272,6 +277,12 @@ M 311.63779,10 312.2454,10"/>
&.down{
transform: rotate(180deg);
}
&:hover{
cursor: pointer;
& > circle{
fill:$action-light;
}
}
}
@supports (backdrop-filter: blur(0.5rem)){
div.footer{