This commit is contained in:
Robin Grenzdörfer 2023-07-19 15:22:20 +00:00
parent 9e6dc31811
commit c29765dd09
10 changed files with 30 additions and 9 deletions

View File

@ -90,5 +90,7 @@ fields:
type: object[] type: object[]
meta: meta:
label: Zeilen label: Zeilen
folding:
force: true
subFields: subFields:
- !include fields/row.yml - !include fields/row.yml

View File

@ -1,6 +1,8 @@
namespace: fontis namespace: fontis
meta: meta:
imageUrl:
eval: "$projectBase + '_/assets/img/defaultImg.PNG'"
openapi: openapi:
servers: servers:
- url: https://tibi-admin-server.code.testversion.online/api/v1/_/demo - url: https://tibi-admin-server.code.testversion.online/api/v1/_/demo
@ -9,3 +11,7 @@ meta:
collections: collections:
- !include collections/navigation.yml - !include collections/navigation.yml
- !include collections/content.yml - !include collections/content.yml
assets:
- name: img
path: img

BIN
api/img/defaultImg.PNG Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 174 KiB

View File

@ -74,7 +74,7 @@ select {
bottom: -2px; bottom: -2px;
background: #ffffff; background: #ffffff;
height: 4px; height: 4px;
transition: width 0.5s ease-out; transition: width 0.5s ease-in;
} }
.underline:hover:after, .underline:hover:after,
.underline:focus:after, .underline:focus:after,
@ -106,7 +106,7 @@ select {
bottom: 0px; bottom: 0px;
width: 0px; width: 0px;
background: #000000; background: #000000;
transition: width 0.5s ease-out; transition: width 0.5s ease-in;
} }
.fill:hover:after, .fill:hover:after,
.fill:focus:after, .fill:focus:after,

View File

@ -73,6 +73,8 @@
.footer { .footer {
margin-top: 80px; margin-top: 80px;
display: flex; display: flex;
position: relative;
z-index: 1000;
flex-direction: column; flex-direction: column;
align-items: flex-end; align-items: flex-end;
color: @font-color-secondary; color: @font-color-secondary;

View File

@ -10,7 +10,7 @@
<img src="/media/Logo Quer.svg" alt="Logo Quer" /> <img src="/media/Logo Quer.svg" alt="Logo Quer" />
</div> </div>
<button class="menu" on:click="{() => (active = !active)}"> <button class="menu" on:click="{() => (active = !active)}">
<div>MENÜ</div> <div class="text">MENÜ</div>
{#if opened} {#if opened}
<img src="/media/ei close.svg" alt="Logo" /> <img src="/media/ei close.svg" alt="Logo" />
{:else} {:else}
@ -55,8 +55,14 @@
align-items: center; align-items: center;
gap: 4px; gap: 4px;
font-weight: bold; font-weight: bold;
.text {
display: none;
}
@media @tablet { @media @tablet {
gap: 10px; gap: 10px;
.text {
display: block;
}
} }
} }
} }

View File

@ -128,9 +128,12 @@
color: @font-color !important; color: @font-color !important;
} }
.long { .long {
display: none; max-width: 0px;
overflow: hidden;
background-color: @bg-color-secondary;
color: @font-color-secondary;
transition: 0.5s width ease-in, 0.5s background-color ease-in, 0.5s color ease-in;
white-space: nowrap; white-space: nowrap;
padding-left: 15px;
} }
&:hover { &:hover {
width: 500px; width: 500px;
@ -139,7 +142,8 @@
background-color: white; background-color: white;
.long { .long {
display: initial; padding-left: 15px;
max-width: fit-content;
background-color: @bg-color; background-color: @bg-color;
color: @font-color; color: @font-color;
} }

View File

@ -26,7 +26,7 @@
height: 30px; height: 30px;
border-radius: 15px; border-radius: 15px;
font-size: 0.7rem; font-size: 0.7rem;
transition: width 0.5s ease-in-out; transition: width 0.5s ease-in;
background-color: transparent; background-color: transparent;
border: 2px solid @bg-color; border: 2px solid @bg-color;
.abbriviation { .abbriviation {

View File

@ -84,7 +84,8 @@
.content { .content {
max-height: 1000px; max-height: 1000px;
overflow: hidden; overflow: hidden;
transition: max-height 1s ease-in-out; transition: max-height 1s ease-in;
&.closed { &.closed {
max-height: 0px; max-height: 0px;
} }

View File

@ -48,7 +48,7 @@
background-color: @bg-color; background-color: @bg-color;
color: @font-color; color: @font-color;
} }
width: 150px; width: 140px;
height: 150px; height: 150px;
.content { .content {
display: flex; display: flex;