small improvements

main
Alina Marquardt 2023-02-28 16:49:17 +00:00
parent eb52ae8480
commit 45498e60a2
4 changed files with 42 additions and 14 deletions

View File

@ -14,7 +14,7 @@ body {
color: #333; color: #333;
background-color: #222; background-color: #222;
position: relative; position: relative;
background-image: url(/images/wood.png); background-image: url(../images/wood.png);
} }
h1, logo span { h1, logo span {
@ -47,7 +47,7 @@ article {
border: 4px solid #285a71; border: 4px solid #285a71;
border-top-width: 2.6rem; border-top-width: 2.6rem;
background-color: white; background-color: white;
box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5); box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.5);
position: absolute; position: absolute;
padding: 4px 0px; padding: 4px 0px;
min-width: 500px; min-width: 500px;
@ -85,20 +85,30 @@ article.expanded {
width: calc(100% - 600px); width: calc(100% - 600px);
} }
#article4 {
top: 243px;
right: auto;
left: 77px;
z-index: 27;
width: calc(100% - 600px);
}
logo { logo {
width: 100%; width: 800px;
height: 100%; height: 600px;
max-width: calc(100% - 60px);
max-height: calc(100% - 60px);
top: 35px;
left: 140px;
background-size: 680px 400px; background-size: 680px 400px;
z-index: 50; z-index: 50;
border: 4px solid #285a71; border: 4px solid #285a71;
border-top-width: 2.6rem; border-top-width: 2.6rem;
background-color: white; background-color: white;
box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5); box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.5);
border-color: #00AEC1; border-color: #00AEC1;
transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out;
position: absolute; position: absolute;
left: 0;
top: 0;
background-position: calc(50% - 30px) 50%; background-position: calc(50% - 30px) 50%;
background-repeat: no-repeat; background-repeat: no-repeat;
margin: 0; margin: 0;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 210 KiB

After

Width:  |  Height:  |  Size: 207 KiB

View File

@ -13,7 +13,7 @@
role="img" aria-label="animated lastfuture logo" role="img" aria-label="animated lastfuture logo"
@click="if(sidebar) $dispatch('winchange'); sidebar = !sidebar; togglePhase();" @click="if(sidebar) $dispatch('winchange'); sidebar = !sidebar; togglePhase();"
@winchange.window="sidebar = true; togglePhase();" @winchange.window="sidebar = true; togglePhase();"
:class="sidebar ? 'sidebar' : ''"> :class="{ 'sidebar': sidebar }">
<span>lastfuture.gif</span> <span>lastfuture.gif</span>
</logo> </logo>
<article id="article1" @winchange.window="expanded = false; clicked = true" :class="{ 'ontop': !clicked, 'expanded': expanded }" x-data="article"> <article id="article1" @winchange.window="expanded = false; clicked = true" :class="{ 'ontop': !clicked, 'expanded': expanded }" x-data="article">
@ -43,6 +43,14 @@
<p>Cras mattis consectetur purus sit amet fermentum. Nullam quis risus eget urna mollis ornare vel eu leo. Donec sed odio dui. <a href="//google.com/">Praesent commodo cursus magna</a>, vel scelerisque nisl consectetur et. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aenean lacinia bibendum nulla sed consectetur. Donec id elit non mi porta gravida at eget metus.</p> <p>Cras mattis consectetur purus sit amet fermentum. Nullam quis risus eget urna mollis ornare vel eu leo. Donec sed odio dui. <a href="//google.com/">Praesent commodo cursus magna</a>, vel scelerisque nisl consectetur et. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aenean lacinia bibendum nulla sed consectetur. Donec id elit non mi porta gravida at eget metus.</p>
</div> </div>
</article> </article>
<article id="article4" @winchange.window="expanded = false" :class="{ 'expanded': expanded }" x-data="article">
<h1
@click="if(!expanded) $dispatch('winchange'); toggle()"
>videos/playlist.m3u</h1>
<div class="content" x-cloak x-show="expanded">
<p>Cras mattis consectetur purus sit amet fermentum. Nullam quis risus eget urna mollis ornare vel eu leo. Donec sed odio dui. <a href="//google.com/">Praesent commodo cursus magna</a>, vel scelerisque nisl consectetur et. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aenean lacinia bibendum nulla sed consectetur. Donec id elit non mi porta gravida at eget metus.</p>
</div>
</article>
<script src="js/main.js"></script> <script src="js/main.js"></script>
<script src="https://cdn.jsdelivr.net/npm/alpinejs@3.11.1/dist/cdn.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/alpinejs@3.11.1/dist/cdn.min.js"></script>
</body> </body>

View File

@ -9,7 +9,7 @@ $window-text: white;
border: 4px solid $window-chrome; border: 4px solid $window-chrome;
border-top-width: 2.6rem; border-top-width: 2.6rem;
background-color: white; background-color: white;
box-shadow: 2px 2px 3px rgba(0,0,0,0.5); box-shadow: 4px 4px 0px rgba(0,0,0,0.5);
} }
[x-cloak] { [x-cloak] {
@ -28,7 +28,7 @@ body {
color: $primary-color; color: $primary-color;
background-color: $background-color; background-color: $background-color;
position: relative; position: relative;
background-image: url(/images/wood.png); background-image: url(../images/wood.png);
} }
h1, logo span { h1, logo span {
@ -101,11 +101,23 @@ article {
width: calc( 100% - 600px ); width: calc( 100% - 600px );
} }
#article4 {
top: 243px;
right: auto;
left: 77px;
z-index: 27;
width: calc( 100% - 600px );
}
logo { logo {
//width 680px 510px 425px 340px 289px //width 680px 510px 425px 340px 289px
//height 400px 300px 250px 200px 170px //height 400px 300px 250px 200px 170px
width: 100%; width: 800px;
height: 100%; height: 600px;
max-width: calc( 100% - 60px );
max-height: calc( 100% - 60px );
top: 35px;
left: 140px;
background-size: 680px 400px; background-size: 680px 400px;
&.sidebar { &.sidebar {
width: 300px; width: 300px;
@ -122,8 +134,6 @@ logo {
border-color: $window-chrome-active; border-color: $window-chrome-active;
transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out;
position: absolute; position: absolute;
left: 0;
top: 0;
background-position: calc( 50% - 30px ) 50%; background-position: calc( 50% - 30px ) 50%;
background-repeat: no-repeat; background-repeat: no-repeat;
margin: 0; margin: 0;