-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
181 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
vue/src/components/generic-components/banners/SectionBanner.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<template> | ||
<div class="SectionBanner"> | ||
<div class="SectionBanner__HalfCircle"></div> | ||
<div class="SectionBanner__Title">{{ text }}</div> | ||
</div> | ||
</template> | ||
<script setup lang="ts"> | ||
defineProps({ | ||
text: String | ||
}) | ||
</script> | ||
<style scoped lang="scss"> | ||
.SectionBanner { | ||
display: flex; | ||
align-items: center; | ||
flex-wrap: wrap; | ||
width: 100%; | ||
min-height: 42px; | ||
position: relative; | ||
&__HalfCircle { | ||
width: 21px; | ||
height: 42px; | ||
background-color: rgb(var(--v-theme-main-yellow)); | ||
border-radius: 0 21px 21px 0; | ||
position: absolute; | ||
left: 0; | ||
top: 50%; | ||
transform: translateY(-50%); | ||
} | ||
&__Title { | ||
margin-left: 50px; | ||
font-size: 30px; | ||
font-weight: 700; | ||
color: rgb(var(--v-theme-main-blue)); | ||
line-height: 45px; | ||
} | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
vue/src/components/generic-components/content/ContentDivider.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<template> | ||
<div class="ContentDivider"></div> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
</script> | ||
|
||
<style scoped> | ||
.ContentDivider{ | ||
width: 100%; | ||
height: 0.3em; | ||
background-color: rgb(var(--v-theme-light-yellow)); | ||
} | ||
</style> |
23 changes: 23 additions & 0 deletions
23
vue/src/components/generic-components/content/ThematicChip.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<template> | ||
<div class="ThematicChip">{{ text }}</div> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
defineProps({ | ||
text: String | ||
})</script> | ||
|
||
<style scoped lang="scss"> | ||
.ThematicChip { | ||
background-color: rgb(var(--v-theme-light-yellow)); | ||
color: rgb(var(--v-theme-main-blue)); | ||
font-size: 14px; | ||
font-weight: 400; | ||
display: inline-block; | ||
padding: 8px 16px; | ||
border-radius: 16px; | ||
text-align: center; | ||
white-space: nowrap; | ||
border: 1px solid white; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters