mirror of
https://github.com/cupcakearmy/liquet.git
synced 2024-11-01 08:04:13 +01:00
tags list for phone, top bar and small fixes
This commit is contained in:
parent
c719062fcb
commit
882fc5e323
@ -1,7 +1,7 @@
|
|||||||
#home #header {
|
#home #header {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin-top: 8vw;
|
margin-top: 8vmin;
|
||||||
margin-bottom: 8vw;
|
margin-bottom: 16vmin;
|
||||||
padding: 0 2em;
|
padding: 0 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -27,19 +27,15 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#home #list-container {
|
#home #list-container {
|
||||||
/*background: var(--clr-primary);*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#home #list-header {
|
#home #list-header {
|
||||||
/*background: var(--clr-primary);*/
|
|
||||||
/*box-shadow: 0 0 1em -0.5em hsla(0, 0%, 0%, 0.1);*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#home #list {
|
#home #list {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 0 2em;
|
padding: 0 2em;
|
||||||
margin-bottom: 16vh;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 40em) {
|
@media only screen and (min-width: 40em) {
|
||||||
|
@ -1,10 +1,28 @@
|
|||||||
|
#singular #top img {
|
||||||
|
margin: .25em .25em;
|
||||||
|
vertical-align: middle;
|
||||||
|
transition: var(--animation);
|
||||||
|
}
|
||||||
|
|
||||||
|
#singular #top img:hover {
|
||||||
|
transform: scale(1.5);
|
||||||
|
}
|
||||||
|
|
||||||
|
#singular #top #left img {
|
||||||
|
width: 1.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#singular #top #right img {
|
||||||
|
width: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
#singular #main {
|
#singular #main {
|
||||||
padding-top: 8vw;
|
padding-top: 8vw;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
overflow-wrap: break-word;
|
overflow-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
#singular #main:after{
|
#singular #main:after {
|
||||||
content: '';
|
content: '';
|
||||||
height: 16vh;
|
height: 16vh;
|
||||||
display: block;
|
display: block;
|
||||||
@ -93,13 +111,17 @@
|
|||||||
line-height: 1em;
|
line-height: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#singular .links > div:hover {
|
||||||
|
transform: rotate(180deg) scale(1.5);
|
||||||
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 40em) {
|
@media only screen and (min-width: 40em) {
|
||||||
#singular .links > div {
|
#singular .links > div {
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
width: 3em;
|
width: 3em;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
#singular .links > div:hover {
|
#singular #top img {
|
||||||
transform: rotate(180deg) scale(1.5);
|
margin: .25em 1em;
|
||||||
|
}
|
||||||
}
|
}
|
@ -20,7 +20,7 @@ function render_links( $expanded = false ) {
|
|||||||
if ( $saved ) { ?>
|
if ( $saved ) { ?>
|
||||||
<a href="<?= $saved ?>" target="_blank">
|
<a href="<?= $saved ?>" target="_blank">
|
||||||
<img src="<?= get_template_directory_uri() . '/vendor/logos/' . $link . '.png' ?>"
|
<img src="<?= get_template_directory_uri() . '/vendor/logos/' . $link . '.png' ?>"
|
||||||
alt="<?= $link; ?>"/>
|
alt="<?= $link; ?>" rel="noopener"/>
|
||||||
</a>
|
</a>
|
||||||
<?php }
|
<?php }
|
||||||
}
|
}
|
||||||
|
@ -11,10 +11,28 @@ $dates = getDates();
|
|||||||
|
|
||||||
?>
|
?>
|
||||||
<div class="flex container vertical fill" id="singular">
|
<div class="flex container vertical fill" id="singular">
|
||||||
<div class="flex item shrink gohome">
|
<div class="flex item shrink" id="top">
|
||||||
<a href="<?= get_bloginfo( 'wpurl' ); ?>">
|
<div class="flex container horizontal middle">
|
||||||
<span class="alt-font"><?= get_bloginfo( 'name' ); ?></span>
|
<div class="flex item grow text-align-left" id="left">
|
||||||
</a>
|
<a href="<?= get_bloginfo( 'wpurl' ); ?>">
|
||||||
|
<img src="<?= get_template_directory_uri() . '/vendor/icons/left.svg' ?>" alt="arrow back"/>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="flex item shrink gohome" id="center">
|
||||||
|
<a href="<?= get_bloginfo( 'wpurl' ); ?>">
|
||||||
|
<span class="alt-font"><?= get_bloginfo( 'name' ); ?></span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="flex item grow text-align-right" id="right">
|
||||||
|
<?php
|
||||||
|
$saved = get_option( 'website_url' );
|
||||||
|
if ( $saved ) : ?>
|
||||||
|
<a href="<?= $saved; ?>" target="_blank">
|
||||||
|
<img src="<?= get_template_directory_uri() . '/vendor/logos/website.png' ?>" alt="website"/>
|
||||||
|
</a>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex item grow">
|
<div class="flex item grow">
|
||||||
<div class="flex container horizontal fill">
|
<div class="flex container horizontal fill">
|
||||||
@ -64,6 +82,8 @@ $dates = getDates();
|
|||||||
<br>
|
<br>
|
||||||
<?php render_current_tags(); ?>
|
<?php render_current_tags(); ?>
|
||||||
<br>
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
Theme Name: Liquet
|
Theme Name: Liquet
|
||||||
Author: Niccolo Borgioli
|
Author: Niccolo Borgioli
|
||||||
Description: Minimalistic clean theme
|
Description: Minimalistic clean theme
|
||||||
Version: 0.7
|
Version: 0.8
|
||||||
License: MIT
|
License: MIT
|
||||||
Tags: minimal, simple, typography, clean
|
Tags: minimal, simple, typography, clean
|
||||||
Author URI: https://nicco.io
|
Author URI: https://nicco.io
|
||||||
@ -89,6 +89,31 @@ hr {
|
|||||||
margin-top: -.25em;
|
margin-top: -.25em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@media only screen and (max-width: 40em) {
|
||||||
|
.tags::-webkit-scrollbar {
|
||||||
|
width: 2px;
|
||||||
|
background: transparent;
|
||||||
|
height: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tags::-webkit-scrollbar-thumb {
|
||||||
|
background: var(--clr-dark);
|
||||||
|
border-radius: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tags {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tags > a.tag {
|
||||||
|
margin: .25em;
|
||||||
|
flex: 1 0 auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.tags > a.tag {
|
.tags > a.tag {
|
||||||
padding: .25em;
|
padding: .25em;
|
||||||
background: #eee;
|
background: #eee;
|
||||||
|
5
liquet/vendor/fonts/import.css
vendored
5
liquet/vendor/fonts/import.css
vendored
@ -2,6 +2,7 @@
|
|||||||
font-family: 'Raleway';
|
font-family: 'Raleway';
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
|
font-display: swap;
|
||||||
src: url('./Raleway/Raleway-Regular.woff2') format('woff2')
|
src: url('./Raleway/Raleway-Regular.woff2') format('woff2')
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -9,6 +10,7 @@
|
|||||||
font-family: 'Raleway';
|
font-family: 'Raleway';
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
|
font-display: swap;
|
||||||
src: url('./Raleway/Raleway-Italic.woff2') format('woff2')
|
src: url('./Raleway/Raleway-Italic.woff2') format('woff2')
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -16,6 +18,7 @@
|
|||||||
font-family: 'Raleway';
|
font-family: 'Raleway';
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
font-display: swap;
|
||||||
src: url('./Raleway/Raleway-Bold.woff2') format('woff2')
|
src: url('./Raleway/Raleway-Bold.woff2') format('woff2')
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -23,6 +26,7 @@
|
|||||||
font-family: 'Raleway';
|
font-family: 'Raleway';
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
font-display: swap;
|
||||||
src: url('./Raleway/Raleway-BoldItalic.woff2') format('woff2')
|
src: url('./Raleway/Raleway-BoldItalic.woff2') format('woff2')
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -30,5 +34,6 @@
|
|||||||
font-family: 'Abril Fatface';
|
font-family: 'Abril Fatface';
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
|
font-display: swap;
|
||||||
src: url('./Abril/AbrilFatface-Regular.woff2') format('woff2')
|
src: url('./Abril/AbrilFatface-Regular.woff2') format('woff2')
|
||||||
}
|
}
|
1
liquet/vendor/icons/contrast.svg
vendored
Normal file
1
liquet/vendor/icons/contrast.svg
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M256 48C141.1 48 48 141.1 48 256s93.1 208 208 208 208-93.1 208-208S370.9 48 256 48zm127.3 335.3c-34 34-79.2 52.7-127.3 52.7V76c48.1 0 93.3 18.7 127.3 52.7S436 207.9 436 256s-18.7 93.3-52.7 127.3z"/></svg>
|
After Width: | Height: | Size: 275 B |
1
liquet/vendor/icons/left.svg
vendored
Normal file
1
liquet/vendor/icons/left.svg
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M216.4 163.7c5.1 5 5.1 13.3.1 18.4L155.8 243h231.3c7.1 0 12.9 5.8 12.9 13s-5.8 13-12.9 13H155.8l60.8 60.9c5 5.1 4.9 13.3-.1 18.4-5.1 5-13.2 5-18.3-.1l-82.4-83c-1.1-1.2-2-2.5-2.7-4.1-.7-1.6-1-3.3-1-5 0-3.4 1.3-6.6 3.7-9.1l82.4-83c4.9-5.2 13.1-5.3 18.2-.3z"/></svg>
|
After Width: | Height: | Size: 334 B |
Loading…
Reference in New Issue
Block a user