mirror of
https://github.com/cupcakearmy/liquet.git
synced 2024-10-31 23:54:12 +01:00
extended logos for sharing and discussion in singular
This commit is contained in:
parent
4d92b206a8
commit
6e001a303c
@ -1,14 +1,23 @@
|
|||||||
#logos {
|
#logos {
|
||||||
margin: 1.5em 0 0 0;
|
margin-top: 1.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
#logos img {
|
#logos #title {
|
||||||
|
margin: 2em;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#logos #title img {
|
||||||
|
height: 1.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#logos #list img {
|
||||||
height: 2em;
|
height: 2em;
|
||||||
width: 2em;
|
width: 2em;
|
||||||
margin: 0 .5em;
|
margin: 0 .5em;
|
||||||
transition: var(--animation);
|
transition: var(--animation);
|
||||||
}
|
}
|
||||||
|
|
||||||
#logos img:hover {
|
#logos #list img:hover {
|
||||||
transform: scale(1.15);
|
transform: scale(1.15);
|
||||||
}
|
}
|
@ -4,8 +4,8 @@
|
|||||||
overflow-wrap: break-word;
|
overflow-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
#singular #main a {
|
#singular #main p a {
|
||||||
text-decoration: underline;
|
border-bottom: 2px solid var(--clr-black);
|
||||||
}
|
}
|
||||||
|
|
||||||
#singular #header {
|
#singular #header {
|
||||||
|
@ -2,10 +2,20 @@
|
|||||||
|
|
||||||
$links = [ 'medium', 'github', 'twitter', 'website' ];
|
$links = [ 'medium', 'github', 'twitter', 'website' ];
|
||||||
|
|
||||||
function render_links() {
|
function render_links( $expanded = false ) {
|
||||||
global $links;
|
global $links;
|
||||||
?>
|
?>
|
||||||
<div class="flex container horizontal middle center" id="logos"><?php
|
<div id="logos">
|
||||||
|
<?php if ( $expanded ) { ?>
|
||||||
|
<div id="title" class="alt-font">
|
||||||
|
discuss & share
|
||||||
|
<br/>
|
||||||
|
<img src="<?= get_template_directory_uri() . '/vendor/icons/down.svg' ?>"
|
||||||
|
alt="arrow down"/>
|
||||||
|
</div>
|
||||||
|
<?php } ?>
|
||||||
|
<div class="flex container horizontal middle center" id="list">
|
||||||
|
<?php
|
||||||
foreach ( $links as $link ) {
|
foreach ( $links as $link ) {
|
||||||
$saved = get_option( $link . '_url' );
|
$saved = get_option( $link . '_url' );
|
||||||
if ( $saved ) { ?>
|
if ( $saved ) { ?>
|
||||||
@ -15,5 +25,6 @@ function render_links() {
|
|||||||
</a>
|
</a>
|
||||||
<?php }
|
<?php }
|
||||||
}
|
}
|
||||||
?></div><?php
|
?></div>
|
||||||
|
</div><?php
|
||||||
}
|
}
|
@ -46,8 +46,7 @@ $dates = getDates();
|
|||||||
<?php the_content(); ?>
|
<?php the_content(); ?>
|
||||||
<br>
|
<br>
|
||||||
<?php render_current_tags(); ?>
|
<?php render_current_tags(); ?>
|
||||||
<hr>
|
<?php render_links(true); ?>
|
||||||
<?php render_links(); ?>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
1
liquet/vendor/icons/down.svg
vendored
Normal file
1
liquet/vendor/icons/down.svg
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M348.3 295.6c-5-5.1-13.3-5.1-18.4-.1L269 356.2V124.9c0-7.1-5.8-12.9-13-12.9s-13 5.8-13 12.9v231.3l-60.9-60.8c-5.1-5-13.3-4.9-18.4.1-5 5.1-5 13.2.1 18.3l83 82.4c1.2 1.1 2.5 2 4.1 2.7 1.6.7 3.3 1 5 1 3.4 0 6.6-1.3 9.1-3.7l83-82.4c5.2-4.9 5.3-13.1.3-18.2z"/></svg>
|
After Width: | Height: | Size: 332 B |
1
liquet/vendor/icons/share.svg
vendored
Normal file
1
liquet/vendor/icons/share.svg
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M444.7 230.4l-141.1-132c-1.7-1.6-3.3-2.5-5.6-2.4-4.4.2-10 3.3-10 8v66.2c0 2-1.6 3.8-3.6 4.1C144.1 195.8 85 300.8 64.1 409.8c-.8 4.3 5 8.3 7.7 4.9 51.2-64.5 113.5-106.6 212-107.4 2.2 0 4.2 2.6 4.2 4.8v65c0 7 9.3 10.1 14.5 5.3l142.1-134.3c2.6-2.4 3.4-5.2 3.5-8.4-.1-3.2-.9-6.9-3.4-9.3z"/></svg>
|
After Width: | Height: | Size: 363 B |
Loading…
Reference in New Issue
Block a user