generated from cms/tibi-docs
last changes
This commit is contained in:
parent
c29765dd09
commit
c9135d03cf
@ -15,12 +15,6 @@ subFields:
|
|||||||
label: Oberer Titel
|
label: Oberer Titel
|
||||||
helperText: "Dieser Titel wird in der Zeile oben angezeigt."
|
helperText: "Dieser Titel wird in der Zeile oben angezeigt."
|
||||||
|
|
||||||
- name: topTitleRed
|
|
||||||
type: boolean
|
|
||||||
meta:
|
|
||||||
label: Oberer Titel rot
|
|
||||||
helperText: "Dieser Titel wird in der Zeile oben rot angezeigt."
|
|
||||||
|
|
||||||
- name: title
|
- name: title
|
||||||
type: string
|
type: string
|
||||||
meta:
|
meta:
|
||||||
@ -45,6 +39,12 @@ subFields:
|
|||||||
label: Hintergrundbild
|
label: Hintergrundbild
|
||||||
helperText: "Dieses Bild wird als Hintergrundbild der Zeile angezeigt."
|
helperText: "Dieses Bild wird als Hintergrundbild der Zeile angezeigt."
|
||||||
|
|
||||||
|
- name: flexWrapNormal
|
||||||
|
type: boolean
|
||||||
|
meta:
|
||||||
|
label: Zeile normal umbrechen
|
||||||
|
helperText: "Ist dies aktiviert, so wird die Zeile normal und nicht reverse umgebrochen."
|
||||||
|
|
||||||
- name: columns
|
- name: columns
|
||||||
type: object[]
|
type: object[]
|
||||||
meta:
|
meta:
|
||||||
|
@ -28,6 +28,7 @@ services:
|
|||||||
- ./:/data
|
- ./:/data
|
||||||
- ./tmp:/tmp
|
- ./tmp:/tmp
|
||||||
- ./tmp/nonexistent:/nonexistent
|
- ./tmp/nonexistent:/nonexistent
|
||||||
|
- ./tmp/.npm:/.npm
|
||||||
working_dir: /data
|
working_dir: /data
|
||||||
command: sh -c "yarn install && API_BASE=http://tibiserver:8080/api/v1/_/${TIBI_NAMESPACE} yarn start"
|
command: sh -c "yarn install && API_BASE=http://tibiserver:8080/api/v1/_/${TIBI_NAMESPACE} yarn start"
|
||||||
expose:
|
expose:
|
||||||
|
@ -139,7 +139,7 @@ swiper-slide {
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: 10000;
|
z-index: 10000;
|
||||||
left: 0px;
|
left: 0px;
|
||||||
bottom: 0px;
|
bottom: -10px;
|
||||||
background: #000000;
|
background: #000000;
|
||||||
height: 5px;
|
height: 5px;
|
||||||
width: 0;
|
width: 0;
|
||||||
|
@ -56,14 +56,16 @@
|
|||||||
<div class="lower">{nextpage?.name}</div>
|
<div class="lower">{nextpage?.name}</div>
|
||||||
</button>{/if}
|
</button>{/if}
|
||||||
<div class="lower-part">
|
<div class="lower-part">
|
||||||
<div class="links">
|
<div class="container">
|
||||||
<button>Datenschutz</button>
|
<div class="links">
|
||||||
<button>Impressum</button>
|
<button>Datenschutz</button>
|
||||||
</div>
|
<button>Impressum</button>
|
||||||
<div class="contact">
|
</div>
|
||||||
<button>0711 644 700-0</button>
|
<div class="contact">
|
||||||
|
<button>0711 644 700-0</button>
|
||||||
|
|
||||||
<button> <a href="mailto:info@fontis.de" class="button"> info@fontis.de</a></button>
|
<button> <a href="mailto:info@fontis.de" class="button"> info@fontis.de</a></button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -103,34 +105,41 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.lower-part {
|
.lower-part {
|
||||||
padding: 40px 40px;
|
padding: 40px 20px;
|
||||||
background-color: @bg-color-secondary;
|
background-color: @bg-color-secondary;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
justify-content: center;
|
||||||
.links,
|
.container {
|
||||||
.contact {
|
max-width: 1800px;
|
||||||
|
width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
padding: 0px 2.5vw;
|
||||||
padding: 10px 0px;
|
flex-direction: column;
|
||||||
}
|
|
||||||
button {
|
|
||||||
color: @font-color-secondary;
|
|
||||||
a {
|
|
||||||
color: @font-color-secondary;
|
|
||||||
font-weight: normal;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@media @tablet {
|
|
||||||
padding: 80px 40px;
|
|
||||||
flex-direction: row;
|
|
||||||
justify-content: space-between;
|
|
||||||
.links,
|
.links,
|
||||||
.contact {
|
.contact {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-start;
|
justify-content: space-between;
|
||||||
gap: 40px;
|
padding: 10px 0px;
|
||||||
padding: 0px;
|
}
|
||||||
|
button {
|
||||||
|
color: @font-color-secondary;
|
||||||
|
a {
|
||||||
|
color: @font-color-secondary;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media @tablet {
|
||||||
|
padding: 80px 2.5vw;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: space-between;
|
||||||
|
.links,
|
||||||
|
.contact {
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-start;
|
||||||
|
gap: 40px;
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -29,14 +29,13 @@
|
|||||||
.header {
|
.header {
|
||||||
background-color: @bg-color;
|
background-color: @bg-color;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 10.4px 5px;
|
|
||||||
@media @tablet {
|
padding: 25.4px calc(2.5vw + 10px);
|
||||||
padding: 25.4px 60px;
|
|
||||||
}
|
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
gap: 25px;
|
gap: 35px;
|
||||||
|
|
||||||
.logo {
|
.logo {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
@ -102,6 +102,7 @@
|
|||||||
@media @tablet {
|
@media @tablet {
|
||||||
flex-wrap: initial;
|
flex-wrap: initial;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
align-items: flex-end;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
@ -109,18 +109,21 @@
|
|||||||
}
|
}
|
||||||
.inner-container {
|
.inner-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: flex-start;
|
||||||
|
@media @tablet {
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: fit-content;
|
height: fit-content;
|
||||||
|
|
||||||
.titles {
|
.titles {
|
||||||
|
padding: 0 5%;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 2rem;
|
font-size: 2rem;
|
||||||
padding: 10px 0px;
|
padding: 20px 0px;
|
||||||
margin: 10px 0px 20px 0px;
|
margin: 10px 0px 20px 0px;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
position: relative;
|
position: relative;
|
||||||
@ -143,16 +146,17 @@
|
|||||||
min-width: 0px;
|
min-width: 0px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media @tablet {
|
@media @tablet {
|
||||||
.titles {
|
.titles {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 4rem;
|
font-size: 3.4rem;
|
||||||
padding: 20px 0px;
|
padding: 20px 20px;
|
||||||
margin: 20px 0px 40px 0px;
|
margin: 20px 0px 40px 0px;
|
||||||
}
|
}
|
||||||
h2 {
|
h2 {
|
||||||
font-size: 1.6rem;
|
font-size: 1.5rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.description {
|
.description {
|
||||||
|
@ -61,7 +61,11 @@
|
|||||||
{#if row.subTitle}
|
{#if row.subTitle}
|
||||||
<h3>{row.subTitle}</h3>
|
<h3>{row.subTitle}</h3>
|
||||||
{/if}
|
{/if}
|
||||||
<div class="row" class:dominant="{row.columns.some((col) => col.contentType == 'iconCycleCircle')}">
|
<div
|
||||||
|
class="row"
|
||||||
|
class:normalWrap="{row.flexWrapNormal}"
|
||||||
|
class:dominant="{row.columns.some((col) => col.contentType == 'iconCycleCircle')}"
|
||||||
|
>
|
||||||
{#each row?.columns as col}
|
{#each row?.columns as col}
|
||||||
<div class="col" class:dominant="{col.contentType == 'iconCycleCircle'}">
|
<div class="col" class:dominant="{col.contentType == 'iconCycleCircle'}">
|
||||||
{#if col?.contentType == "text"}
|
{#if col?.contentType == "text"}
|
||||||
@ -130,7 +134,7 @@
|
|||||||
font-size: 2.3rem;
|
font-size: 2.3rem;
|
||||||
}
|
}
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 5rem;
|
font-size: 4rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -146,6 +150,9 @@
|
|||||||
}
|
}
|
||||||
@media (max-width: 640px) {
|
@media (max-width: 640px) {
|
||||||
flex-direction: column-reverse;
|
flex-direction: column-reverse;
|
||||||
|
&.normalWrap {
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
& > .col {
|
& > .col {
|
||||||
&.dominant {
|
&.dominant {
|
||||||
|
@ -63,7 +63,7 @@
|
|||||||
height: fit-content;
|
height: fit-content;
|
||||||
img {
|
img {
|
||||||
display: block;
|
display: block;
|
||||||
height: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
.content {
|
.content {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@ -91,7 +91,11 @@
|
|||||||
gap: 20px;
|
gap: 20px;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
.title {
|
.title {
|
||||||
padding: 5px 10px;
|
font-size: min(0.9vw, 14px);
|
||||||
|
padding: 2px 5px;
|
||||||
|
@media @tablet {
|
||||||
|
padding: 5px 10px;
|
||||||
|
}
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: @font-color-secondary;
|
color: @font-color-secondary;
|
||||||
background-color: @bg-color-secondary;
|
background-color: @bg-color-secondary;
|
||||||
@ -102,7 +106,10 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.properties {
|
.properties {
|
||||||
display: flex;
|
display: none;
|
||||||
|
@media @desktop {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 5px;
|
gap: 5px;
|
||||||
.property-row {
|
.property-row {
|
||||||
@ -112,9 +119,11 @@
|
|||||||
.property {
|
.property {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
width: 30px;
|
width: 2vw;
|
||||||
max-width: 30px;
|
max-width: 30px;
|
||||||
height: 30px;
|
font-size: min(0.7vw, 14px);
|
||||||
|
height: 2vw;
|
||||||
|
max-height: 30px;
|
||||||
border-radius: 15px;
|
border-radius: 15px;
|
||||||
border: 2px solid #4f4f4f;
|
border: 2px solid #4f4f4f;
|
||||||
color: #4f4f4f;
|
color: #4f4f4f;
|
||||||
@ -122,7 +131,8 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
transition: 0.5s width ease-in, 0.5s background-color ease-in, 0.5s color ease-in;
|
transition: 0.5s width ease-in, 0.5s max-width ease-in, 0.5s background-color ease-in,
|
||||||
|
0.5s color ease-in;
|
||||||
&.selected {
|
&.selected {
|
||||||
background-color: @bg-color !important;
|
background-color: @bg-color !important;
|
||||||
color: @font-color !important;
|
color: @font-color !important;
|
||||||
@ -136,8 +146,8 @@
|
|||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
&:hover {
|
&:hover {
|
||||||
width: 500px;
|
width: fit-content;
|
||||||
max-width: fit-content;
|
max-width: 1000px;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
background-color: white;
|
background-color: white;
|
||||||
|
|
||||||
|
@ -23,9 +23,12 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
color: @font-color-secondary;
|
color: @font-color-secondary;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
height: 30px;
|
height: 20px;
|
||||||
|
@media @tablet {
|
||||||
|
height: 30px;
|
||||||
|
}
|
||||||
border-radius: 15px;
|
border-radius: 15px;
|
||||||
font-size: 0.7rem;
|
font-size: min(2.2vw, 11px);
|
||||||
transition: width 0.5s ease-in;
|
transition: width 0.5s ease-in;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
border: 2px solid @bg-color;
|
border: 2px solid @bg-color;
|
||||||
|
@ -36,7 +36,7 @@
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="worldcard" style="overflow-x: scroll;">
|
<div class="worldcard">
|
||||||
<div class="worldcard">
|
<div class="worldcard">
|
||||||
{#each col.worldCard.row as row}
|
{#each col.worldCard.row as row}
|
||||||
<div class="wc-row">
|
<div class="wc-row">
|
||||||
@ -74,8 +74,8 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
width: 100vw;
|
width: 100%;
|
||||||
max-width: 1800px;
|
max-width: 95vw;
|
||||||
|
|
||||||
& > .worldcard {
|
& > .worldcard {
|
||||||
gap: 0px !important;
|
gap: 0px !important;
|
||||||
@ -83,13 +83,14 @@
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
.wc-row {
|
.wc-row {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
max-width: 100%;
|
||||||
height: fit-content;
|
height: fit-content;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.selectboxes {
|
.selectboxes {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
max-width: 100vw;
|
max-width: 95vw;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
@ -102,6 +103,7 @@
|
|||||||
.prop-row {
|
.prop-row {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
|
flex-wrap: wrap;
|
||||||
gap: 10px;
|
gap: 10px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
@import "../../assets/css/main.less";
|
@import "../../assets/css/main.less";
|
||||||
|
|
||||||
.boxList {
|
.boxList {
|
||||||
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
gap: 20px;
|
gap: 20px;
|
||||||
@ -23,5 +24,6 @@
|
|||||||
color: @font-color-secondary;
|
color: @font-color-secondary;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -60,6 +60,7 @@
|
|||||||
.boxes {
|
.boxes {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
font-family: "Libre Franklin", "sans-serif";
|
||||||
.box {
|
.box {
|
||||||
border-bottom: 2px dotted @bg-color-secondary;
|
border-bottom: 2px dotted @bg-color-secondary;
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -72,7 +73,8 @@
|
|||||||
padding-bottom: 20px;
|
padding-bottom: 20px;
|
||||||
}
|
}
|
||||||
.upper {
|
.upper {
|
||||||
font-size: 1.2rem;
|
cursor: pointer;
|
||||||
|
font-size: 1.4rem;
|
||||||
@media @tablet {
|
@media @tablet {
|
||||||
font-size: 1.6rem;
|
font-size: 1.6rem;
|
||||||
}
|
}
|
||||||
|
@ -28,11 +28,15 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
||||||
width: 80px;
|
width: 80px;
|
||||||
gap: 8px;
|
gap: 8px;
|
||||||
|
max-width: 45%;
|
||||||
|
flex-grow: 1;
|
||||||
@media @tablet {
|
@media @tablet {
|
||||||
width: 140px;
|
max-width: initial;
|
||||||
|
flex-grow: initial;
|
||||||
|
width: 107px;
|
||||||
gap: 20px;
|
gap: 20px;
|
||||||
}
|
}
|
||||||
img {
|
img {
|
||||||
|
@ -17,11 +17,20 @@
|
|||||||
}}"
|
}}"
|
||||||
>
|
>
|
||||||
<div class="image" on:mouseover="{() => (hover = i)}" on:focus on:blur on:mouseout="{() => (hover = -1)}">
|
<div class="image" on:mouseover="{() => (hover = i)}" on:focus on:blur on:mouseout="{() => (hover = -1)}">
|
||||||
{#if hover == i}
|
<!-- Initial Image -->
|
||||||
<img src="{`${apiBaseURL}page/${pageId}/${pp.hoverImage?.src}`}" alt="img" />
|
<img
|
||||||
{:else}
|
class="initial"
|
||||||
<img src="{`${apiBaseURL}page/${pageId}/${pp.initialImage?.src}`}" alt="img" />
|
src="{`${apiBaseURL}page/${pageId}/${pp.initialImage?.src}`}"
|
||||||
{/if}
|
alt="img"
|
||||||
|
style="opacity: {hover == i ? 0 : 1}"
|
||||||
|
/>
|
||||||
|
<!-- Hover Image -->
|
||||||
|
<img
|
||||||
|
class="hover"
|
||||||
|
src="{`${apiBaseURL}page/${pageId}/${pp.hoverImage?.src}`}"
|
||||||
|
alt="img"
|
||||||
|
style="opacity: {hover == i ? 1 : 0}"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="text">
|
<div class="text">
|
||||||
{pp.name}
|
{pp.name}
|
||||||
@ -36,19 +45,30 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
gap: 80px;
|
gap: 30px;
|
||||||
|
@media @tablet {
|
||||||
|
gap: 80px;
|
||||||
|
}
|
||||||
.person {
|
.person {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
margin: 40px 0px;
|
@media @tablet {
|
||||||
|
margin: 40px 0px;
|
||||||
|
}
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
.image {
|
.image {
|
||||||
width: 290px;
|
width: 290px;
|
||||||
height: 368px;
|
height: 368px;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
img {
|
img {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
object-fit: contain;
|
object-fit: contain;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
transition: opacity 0.3s;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.text {
|
.text {
|
||||||
|
@ -9,5 +9,6 @@
|
|||||||
<style>
|
<style>
|
||||||
.text {
|
.text {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
font-family: "Libre Franklin", sans-serif;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -18,5 +18,6 @@
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: start;
|
align-items: start;
|
||||||
gap: 20px;
|
gap: 20px;
|
||||||
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
Loading…
Reference in New Issue
Block a user