publishing issues remain
parent
dfa8ad0b48
commit
00c1b4d7d4
|
@ -9,7 +9,10 @@ $thumbnail = get_the_post_thumbnail_url(get_the_ID(), 'featuredImageCropped');
|
||||||
<li class="post-item grid-item" style="background-image: url(<?php echo $thumbnail; ?>);">
|
<li class="post-item grid-item" style="background-image: url(<?php echo $thumbnail; ?>);">
|
||||||
<a class="post-link" href="<?php the_permalink(); ?>">
|
<a class="post-link" href="<?php the_permalink(); ?>">
|
||||||
<h3 class="post-title"><?php the_title(); ?></h3>
|
<h3 class="post-title"><?php the_title(); ?></h3>
|
||||||
<div class="post-meta"><?php echo get_the_date('Y-m-d'); ?></div>
|
<?php
|
||||||
|
$get_theme_date_opt = get_theme_mod( 'article_shows_date' );
|
||||||
|
if ($get_theme_date_opt) { ?>
|
||||||
|
<div class="post-meta"><?php echo get_the_date('Y-m-d'); ?></div><?php } ?>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -22,6 +22,8 @@ add_action( 'admin_menu', 'example_customizer_menu' );
|
||||||
/**
|
/**
|
||||||
* Adds the individual sections, settings, and controls to the theme customizer
|
* Adds the individual sections, settings, and controls to the theme customizer
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
function copyright_notice( $wp_customize ) {
|
function copyright_notice( $wp_customize ) {
|
||||||
$wp_customize->add_section(
|
$wp_customize->add_section(
|
||||||
'Intellectual Property',
|
'Intellectual Property',
|
||||||
|
@ -69,7 +71,7 @@ function sidebar_setup( $wp_customize ) {
|
||||||
$wp_customize->add_setting( 'news_feed', array( 'default' => 'http://news.silogroup.org' ) );
|
$wp_customize->add_setting( 'news_feed', array( 'default' => 'http://news.silogroup.org' ) );
|
||||||
$wp_customize->add_setting( 'github_url', array( 'default' => 'https://github.com/cmpunches' ) );
|
$wp_customize->add_setting( 'github_url', array( 'default' => 'https://github.com/cmpunches' ) );
|
||||||
$wp_customize->add_setting( 'linkedin_url', array( 'default' => 'https://www.linkedin.com/in/cmpunches' ) );
|
$wp_customize->add_setting( 'linkedin_url', array( 'default' => 'https://www.linkedin.com/in/cmpunches' ) );
|
||||||
$wp_customize->add_setting( 'email_address', array( 'default' => 'punches.chris@gmail.com' ) );
|
$wp_customize->add_setting( 'email_address', array( 'default' => 'chris.punches@silogroup.org' ) );
|
||||||
$wp_customize->add_setting( 'bio_logo', array() );
|
$wp_customize->add_setting( 'bio_logo', array() );
|
||||||
|
|
||||||
$wp_customize->add_control( 'organization_name_textbox', array('label' => 'Organization Name', 'section' => $section_name, 'type' => 'text' ));
|
$wp_customize->add_control( 'organization_name_textbox', array('label' => 'Organization Name', 'section' => $section_name, 'type' => 'text' ));
|
||||||
|
@ -97,6 +99,38 @@ function sidebar_setup( $wp_customize ) {
|
||||||
}
|
}
|
||||||
add_action( 'customize_register', 'sidebar_setup' );
|
add_action( 'customize_register', 'sidebar_setup' );
|
||||||
|
|
||||||
|
function art_ops( $wp_customize ) {
|
||||||
|
$section_name = 'Art Ops';
|
||||||
|
|
||||||
|
$wp_customize->add_section(
|
||||||
|
$section_name,
|
||||||
|
array(
|
||||||
|
'title' => $section_name,
|
||||||
|
'description' => 'Article Options',
|
||||||
|
'priority' => 32
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
$wp_customize->add_setting( 'article_shows_date', array() );
|
||||||
|
|
||||||
|
$wp_customize->add_control( new WP_Customize_Theme_Control( $wp_customize,
|
||||||
|
'Enable Date',
|
||||||
|
array(
|
||||||
|
'label' => __('Show Article Date', 'enable_date'),
|
||||||
|
'section' => $section_name,
|
||||||
|
'type' => 'checkbox',
|
||||||
|
'std' => '1',
|
||||||
|
'settings' => 'article_shows_date'
|
||||||
|
)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
print("art_ops is executing");
|
||||||
|
}
|
||||||
|
add_action( 'customize_register', 'art_ops');
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
function titles_setup( $wp_customize ) {
|
function titles_setup( $wp_customize ) {
|
||||||
$section_name = "Titles Theming";
|
$section_name = "Titles Theming";
|
||||||
|
|
||||||
|
@ -110,27 +144,41 @@ function titles_setup( $wp_customize ) {
|
||||||
);
|
);
|
||||||
|
|
||||||
$wp_customize->add_setting( 'Title Color', array() );
|
$wp_customize->add_setting( 'Title Color', array() );
|
||||||
|
$wp_customize->add_setting( 'Enable Title Shadow', array() );
|
||||||
$wp_customize->add_setting( 'Title Shadow Color', array() );
|
$wp_customize->add_setting( 'Title Shadow Color', array() );
|
||||||
|
|
||||||
$wp_customize->add_setting( 'Subtitle Color', array() );
|
$wp_customize->add_setting( 'Subtitle Color', array() );
|
||||||
|
$wp_customize->add_setting( 'Enable Subtitle Shadow', array() );
|
||||||
$wp_customize->add_setting( 'Subtitle Shadow Color', array() );
|
$wp_customize->add_setting( 'Subtitle Shadow Color', array() );
|
||||||
|
|
||||||
$wp_customize->add_setting( 'Footer Color', array() );
|
$wp_customize->add_setting( 'Footer Color', array() );
|
||||||
|
$wp_customize->add_setting( 'Enable Footer Shadow', array() );
|
||||||
$wp_customize->add_setting( 'Footer Shadow Color', array() );
|
$wp_customize->add_setting( 'Footer Shadow Color', array() );
|
||||||
|
|
||||||
|
|
||||||
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize,
|
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize,
|
||||||
'Title Color',
|
'Title Color',
|
||||||
array(
|
array(
|
||||||
'label' => __('Title Color', 'Antikythera' ),
|
'label' => __('Title Color', 'title_color_s' ),
|
||||||
'section' => $section_name,
|
'section' => $section_name,
|
||||||
'settings' => 'Title Color',
|
'settings' => 'Title Color',
|
||||||
) ) );
|
) ) );
|
||||||
|
|
||||||
|
$wp_customize->add_control( new WP_Customize_Theme_Control( $wp_customize,
|
||||||
|
'Enable Title Shadow',
|
||||||
|
array(
|
||||||
|
'label' => __('Enable Title Shadow', 'enable_title_shadow'),
|
||||||
|
'section' => $section_name,
|
||||||
|
'type' => 'checkbox',
|
||||||
|
'std' => '1'
|
||||||
|
)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize,
|
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize,
|
||||||
'Title Shadow Color',
|
'Title Shadow Color',
|
||||||
array(
|
array(
|
||||||
'label' => __('Title Shadow Color', 'Antikythera' ),
|
'label' => __('Title Shadow Color', 'title_shadow_color' ),
|
||||||
'section' => $section_name,
|
'section' => $section_name,
|
||||||
'settings' => 'Title Shadow Color',
|
'settings' => 'Title Shadow Color',
|
||||||
) ) );
|
) ) );
|
||||||
|
@ -138,15 +186,26 @@ function titles_setup( $wp_customize ) {
|
||||||
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize,
|
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize,
|
||||||
'Subtitle Color',
|
'Subtitle Color',
|
||||||
array(
|
array(
|
||||||
'label' => __('Subtitle Color', 'Antikythera' ),
|
'label' => __('Subtitle Color', 'subtitle_color' ),
|
||||||
'section' => $section_name,
|
'section' => $section_name,
|
||||||
'settings' => 'Subtitle Color',
|
'settings' => 'Subtitle Color',
|
||||||
) ) );
|
) ) );
|
||||||
|
|
||||||
|
$wp_customize->add_control( new WP_Customize_Theme_Control( $wp_customize,
|
||||||
|
'Enable Subtitle Shadow',
|
||||||
|
array(
|
||||||
|
'label' => __('Enable Subtitle Shadow', 'enable_subtitle_shadow'),
|
||||||
|
'section' => $section_name,
|
||||||
|
'type' => 'checkbox',
|
||||||
|
'std' => '1'
|
||||||
|
)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize,
|
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize,
|
||||||
'Subtitle Shadow Color',
|
'Subtitle Shadow Color',
|
||||||
array(
|
array(
|
||||||
'label' => __('Subtitle Shadow Color', 'Antikythera' ),
|
'label' => __('Subtitle Shadow Color', 'subtitle_shadow_color' ),
|
||||||
'section' => $section_name,
|
'section' => $section_name,
|
||||||
'settings' => 'Subtitle Shadow Color',
|
'settings' => 'Subtitle Shadow Color',
|
||||||
) ) );
|
) ) );
|
||||||
|
@ -154,53 +213,67 @@ function titles_setup( $wp_customize ) {
|
||||||
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize,
|
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize,
|
||||||
'Footer Color',
|
'Footer Color',
|
||||||
array(
|
array(
|
||||||
'label' => __('Footer Color', 'Antikythera' ),
|
'label' => __('Footer Color', 'footer_color' ),
|
||||||
'section' => $section_name,
|
'section' => $section_name,
|
||||||
'settings' => 'Footer Color',
|
'settings' => 'Footer Color',
|
||||||
) ) );
|
) ) );
|
||||||
|
|
||||||
|
$wp_customize->add_control( new WP_Customize_Theme_Control( $wp_customize,
|
||||||
|
'Enable Footer Shadow',
|
||||||
|
array(
|
||||||
|
'label' => __('Enable Footer Shadow', 'enable_footer_shadow'),
|
||||||
|
'section' => $section_name,
|
||||||
|
'type' => 'checkbox',
|
||||||
|
'std' => '1'
|
||||||
|
)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize,
|
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize,
|
||||||
'Footer Shadow Color',
|
'Footer Shadow Color',
|
||||||
array(
|
array(
|
||||||
'label' => __('Footer Shadow Color', 'Antikythera' ),
|
'label' => __('Footer Shadow Color', 'footer_shadow_color' ),
|
||||||
'section' => $section_name,
|
'section' => $section_name,
|
||||||
'settings' => 'Footer Shadow Color',
|
'settings' => 'Footer Shadow Color',
|
||||||
) ) );
|
) ) );
|
||||||
}
|
}
|
||||||
add_action( 'customize_register', 'titles_setup' );
|
add_action( 'customize_register', 'titles_setup' );
|
||||||
|
|
||||||
function custom_titles() {
|
function custom_titles() {
|
||||||
$title_color = get_theme_mod( 'Title Color' );
|
$title_color = get_theme_mod( 'Title Color' );
|
||||||
$title_color_s = get_theme_mod( 'Title Shadow Color' );
|
$title_shadow_color = get_theme_mod( 'Title Shadow Color' );
|
||||||
|
$title_shadow_enabled = get_theme_mod( 'Enable Title Shadow' );
|
||||||
|
|
||||||
$subtitle_color = get_theme_mod( 'Subtitle Color' );
|
$subtitle_color = get_theme_mod( 'Subtitle Color' );
|
||||||
$subtitle_color_s = get_theme_mod( 'Subtitle Shadow Color' );
|
$subtitle_shadow_color = get_theme_mod( 'Subtitle Shadow Color' );
|
||||||
|
$subtitle_shadow_enabled = get_theme_mod( 'Enable Subtitle Shadow' );
|
||||||
|
|
||||||
$footer_color = get_theme_mod( 'Footer Color' );
|
$footer_color = get_theme_mod( 'Footer Color' );
|
||||||
$footer_color_s= get_theme_mod( 'Footer Shadow Color' );
|
$footer_shadow_color= get_theme_mod( 'Footer Shadow Color' );
|
||||||
|
$footer_shadow_enabled = get_theme_mod( 'Enable Footer Shadow' );
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
.header_title_logo {
|
.header_title_logo {
|
||||||
color: <?php echo $title_color ?>;
|
color: <?php echo $title_color ?>;
|
||||||
text-shadow: 2px 2px 5px <?php echo $title_color_s ?>;
|
<?php if ($title_shadow_enabled) { ?> text-shadow: 2px 2px 5px <?php echo $title_shadow_color ?>;<?php }?>
|
||||||
}
|
}
|
||||||
|
|
||||||
.header_subtitle_logo {
|
.header_subtitle_logo {
|
||||||
color: <?php echo $subtitle_color; ?>;
|
color: <?php echo $subtitle_color; ?>;
|
||||||
text-shadow: 2px 2px 5px <?php echo $subtitle_color_s; ?>;
|
<?php if ($subtitle_shadow_enabled) { ?> text-shadow: 2px 2px 5px <?php echo $subtitle_shadow_color; ?>;<?php }?>
|
||||||
}
|
}
|
||||||
|
|
||||||
.legal {
|
.legal {
|
||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
color: <?php echo $footer_color; ?>;
|
color: <?php echo $footer_color; ?>;
|
||||||
text-shadow: 2px 2px 5px <?php echo $footer_color_s; ?>;
|
<?php if ($subtitle_shadow_enabled) { ?> text-shadow: 2px 2px 5px <?php echo $footer_shadow_color; ?>;<?php }?>
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
add_action( 'wp_head', 'custom_titles' );
|
add_action( 'wp_head', 'custom_titles' );
|
||||||
|
|
||||||
function register_my_menu() {
|
function register_my_menu() {
|
||||||
|
|
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 5.9 KiB After Width: | Height: | Size: 5.9 KiB |
|
@ -11,11 +11,6 @@ get_background_image();
|
||||||
<div id="loading-bar"></div>
|
<div id="loading-bar"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script>
|
|
||||||
document.getElementById("loading-bar").style.width = "20%"
|
|
||||||
</script>
|
|
||||||
|
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
document.getElementById("loading-bar").style.width = "40%"
|
document.getElementById("loading-bar").style.width = "40%"
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -12,10 +12,6 @@
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="site-toc" style="display:none">
|
|
||||||
<div class="no-index">No Index</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<ul class="site-bio show" style="display:block">
|
<ul class="site-bio show" style="display:block">
|
||||||
<div class="about-me clearfix">
|
<div class="about-me clearfix">
|
||||||
<div class="info"><span class="item desc"><h1><?php echo get_theme_mod( 'organization_name_textbox', 'Owned by Chris Punches'); ?></h1></span></div>
|
<div class="info"><span class="item desc"><h1><?php echo get_theme_mod( 'organization_name_textbox', 'Owned by Chris Punches'); ?></h1></span></div>
|
||||||
|
@ -40,38 +36,39 @@
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<ul class="clearfix">
|
|
||||||
<?php
|
|
||||||
wp_nav_menu(
|
|
||||||
array(
|
|
||||||
'theme_location' => 'header-menu',
|
|
||||||
'container' => false,
|
|
||||||
'menu_class' => 'clearfix my-menu-item',
|
|
||||||
'items_wrap' => '%3$s',
|
|
||||||
|
|
||||||
)
|
|
||||||
);
|
|
||||||
?>
|
|
||||||
</ul>
|
|
||||||
<div class="social clearfix"></div>
|
<div class="social clearfix"></div>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<ul class="site-bio show" style="display:block">
|
<ul class="site-bio show" style="display:block">
|
||||||
<div class="about-me clearfix">
|
<div class="about-me clearfix">
|
||||||
<div class="info"><span class="item desc"><h1>Taxonomy</h1></span></div>
|
<div class="info"><span class="item desc"><h1>Navigation</h1></span></div>
|
||||||
|
<div class="info">
|
||||||
|
<ul class="clearfix">
|
||||||
|
<?php
|
||||||
|
wp_nav_menu(
|
||||||
|
array(
|
||||||
|
'theme_location' => 'header-menu',
|
||||||
|
'container' => false,
|
||||||
|
'menu_class' => 'clearfix my-menu-item',
|
||||||
|
'items_wrap' => '%3$s',
|
||||||
|
|
||||||
|
)
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
<?php
|
<?php
|
||||||
|
# $tags = get_tags();
|
||||||
$tags = get_tags();
|
# $html = '<div class="info">';
|
||||||
$html = '<div class="info">';
|
# foreach ( $tags as $tag ) {
|
||||||
foreach ( $tags as $tag ) {
|
# $tag_link = get_tag_link( $tag->term_id );
|
||||||
$tag_link = get_tag_link( $tag->term_id );
|
#
|
||||||
|
# $html .= "<a href='{$tag_link}' title='{$tag->name} Tag' class='name dark-btn'>";
|
||||||
$html .= "<a href='{$tag_link}' title='{$tag->name} Tag' class='name dark-btn'>";
|
# $html .= "{$tag->name}</a>";
|
||||||
$html .= "{$tag->name}</a>";
|
# }
|
||||||
}
|
# $html .= '</div>';
|
||||||
$html .= '</div>';
|
# echo $html;
|
||||||
echo $html;
|
#
|
||||||
|
|
||||||
?>
|
?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -13,9 +13,6 @@ get_header();
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
document.getElementById("loading-bar").style.width = "20%"
|
document.getElementById("loading-bar").style.width = "20%"
|
||||||
</script>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
document.getElementById("loading-bar").style.width = "40%"
|
document.getElementById("loading-bar").style.width = "40%"
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -25,7 +22,10 @@ get_header();
|
||||||
|
|
||||||
<header class="article-header">
|
<header class="article-header">
|
||||||
<h1 class="article-title" itemprop="name"><?php the_title(); ?></h1>
|
<h1 class="article-title" itemprop="name"><?php the_title(); ?></h1>
|
||||||
<div class="article-meta"><?php echo get_the_date('Y-m-d'); ?></div>
|
<?php
|
||||||
|
$get_theme_date_opt = get_theme_mod( 'article_shows_date' );
|
||||||
|
if ($get_theme_date_opt) { ?>
|
||||||
|
<div class="article-meta"><?php echo get_the_date('Y-m-d'); ?></div><?php } ?>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
@ -48,7 +48,7 @@ get_header();
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
<div class="featured-image">
|
<div class="featured-image">
|
||||||
<p align="center"><img class="featured-image" src="<?php echo $featured_image; ?>"></p>
|
<p align="center"><img height="30%" width="30%" class="featured-image" src="<?php echo $featured_image; ?>"></p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="article-entry" itemprop="articleBody">
|
<div class="article-entry" itemprop="articleBody">
|
||||||
|
@ -79,7 +79,9 @@ get_header();
|
||||||
<li class="post-item grid-item" style="background-image: url(<?php echo $prev_thumb; ?>);">
|
<li class="post-item grid-item" style="background-image: url(<?php echo $prev_thumb; ?>);">
|
||||||
<a class="post-link" href="<?php echo esc_url( get_permalink( $prev_post->ID ) ); ?>">
|
<a class="post-link" href="<?php echo esc_url( get_permalink( $prev_post->ID ) ); ?>">
|
||||||
<h3 class="post-title"><?php echo esc_attr( $prev_post->post_title ); ?></h3>
|
<h3 class="post-title"><?php echo esc_attr( $prev_post->post_title ); ?></h3>
|
||||||
<div class="post-meta"><?php echo esc_attr( $prev_post->post_date ); ?></div>
|
<?php
|
||||||
|
$get_theme_date_opt = get_theme_mod( 'article_shows_date' );
|
||||||
|
if ($get_theme_date_opt) { ?><div class="post-meta"><?php echo esc_attr( $prev_post->post_date ); ?></div><?php } ?>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -131,4 +133,4 @@ get_template_part( 'loader', get_post_format() );
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -5,11 +5,12 @@ Description: Derp
|
||||||
Version: 0.0.1
|
Version: 0.0.1
|
||||||
Tags: Bagira
|
Tags: Bagira
|
||||||
*/
|
*/
|
||||||
|
@import url('//fonts.googleapis.com/css2?family=Allerta+Stencil');
|
||||||
|
|
||||||
@charset "utf-8";
|
@charset "utf-8";
|
||||||
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
|
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
|
||||||
html{
|
html{
|
||||||
font-family:sans-serif;
|
// font-family:sans-serif;
|
||||||
-ms-text-size-adjust:100%;
|
-ms-text-size-adjust:100%;
|
||||||
-webkit-text-size-adjust:100%
|
-webkit-text-size-adjust:100%
|
||||||
}
|
}
|
||||||
|
@ -29,11 +30,13 @@ header{
|
||||||
.header_title_logo {
|
.header_title_logo {
|
||||||
color: #FFFFFF;
|
color: #FFFFFF;
|
||||||
text-shadow: 2px 2px 5px blue;
|
text-shadow: 2px 2px 5px blue;
|
||||||
|
font-family: "Allerta Stencil script=latin rev=8";
|
||||||
}
|
}
|
||||||
|
|
||||||
.header_subtitle_logo {
|
.header_subtitle_logo {
|
||||||
color: white;
|
color: white;
|
||||||
text-shadow: 2px 2px 5px red;
|
// text-shadow: 1px 1px 1px red;
|
||||||
|
font-family: "Allerta Stencil script=latin rev=8";
|
||||||
}
|
}
|
||||||
|
|
||||||
.logoGlow {
|
.logoGlow {
|
||||||
|
@ -189,7 +192,7 @@ html{
|
||||||
body{
|
body{
|
||||||
height:100%;
|
height:100%;
|
||||||
max-height:100%;
|
max-height:100%;
|
||||||
font-family:futura-pt,Helvetica,Arial,"Hiragino Sans GB","Hiragino Sans GB W3",Microsoft JhengHei,WenQuanYi Micro Hei,"Microsoft YaHei",sans-serif;
|
// font-family:futura-pt,Helvetica,Arial,"Hiragino Sans GB","Hiragino Sans GB W3",Microsoft JhengHei,WenQuanYi Micro Hei,"Microsoft YaHei",sans-serif;
|
||||||
font-size:1.8rem;
|
font-size:1.8rem;
|
||||||
line-height:1.5em;
|
line-height:1.5em;
|
||||||
color:#414141;
|
color:#414141;
|
||||||
|
@ -564,6 +567,7 @@ pre code{
|
||||||
text-align:left;
|
text-align:left;
|
||||||
font-size:20px;
|
font-size:20px;
|
||||||
font-weight:500;
|
font-weight:500;
|
||||||
|
font-family: 'Allerta Stencil', sans-serif;
|
||||||
transition:all .24s;
|
transition:all .24s;
|
||||||
text-shadow: 2px 2px 5px blue;
|
text-shadow: 2px 2px 5px blue;
|
||||||
word-wrap:break-word;
|
word-wrap:break-word;
|
||||||
|
@ -807,6 +811,10 @@ pre code{
|
||||||
left:7px;
|
left:7px;
|
||||||
content:"#"
|
content:"#"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.article-title {
|
||||||
|
font-family: "Allerta Stencil script=latin rev=8";
|
||||||
|
}
|
||||||
#comments{
|
#comments{
|
||||||
position:relative;
|
position:relative;
|
||||||
padding:30px 0
|
padding:30px 0
|
||||||
|
@ -881,7 +889,7 @@ pre code{
|
||||||
}
|
}
|
||||||
.site-bio .about-me{
|
.site-bio .about-me{
|
||||||
padding:12px 5px 15px 5px;
|
padding:12px 5px 15px 5px;
|
||||||
background:rgba(0,0,0,.1);
|
background:rgba(255,215,0,.1);
|
||||||
border:1px solid #000000;
|
border:1px solid #000000;
|
||||||
transition:background .24s,border-color .24s
|
transition:background .24s,border-color .24s
|
||||||
}
|
}
|
||||||
|
@ -1494,7 +1502,13 @@ ol.commentlist li.thread-odd {}
|
||||||
|
|
||||||
|
|
||||||
.featured-image {
|
.featured-image {
|
||||||
width: 100%;
|
width: 50%;
|
||||||
|
height: 50%;
|
||||||
|
max-width: 100%;
|
||||||
|
align-content: center;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
height: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
#submit {
|
#submit {
|
||||||
|
@ -1583,4 +1597,29 @@ ol.commentlist li.thread-odd {}
|
||||||
}
|
}
|
||||||
.next {
|
.next {
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
-webkit-animation-delay: 0.1s;
|
||||||
|
-webkit-animation-name: fontfix;
|
||||||
|
-webkit-animation-duration: 0.1s;
|
||||||
|
-webkit-animation-iteration-count: 1;
|
||||||
|
-webkit-animation-timing-function: linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes fontfix {
|
||||||
|
from { opacity: 1; }
|
||||||
|
to { opacity: 1; }
|
||||||
|
}
|
||||||
|
|
||||||
|
.header_title_logo {
|
||||||
|
color: #FFFFFF;
|
||||||
|
// text-shadow: 2px 2px 5px blue;
|
||||||
|
font-family: "Allerta Stencil script=latin rev=8";
|
||||||
|
}
|
||||||
|
|
||||||
|
.header_subtitle_logo {
|
||||||
|
color: white;
|
||||||
|
// text-shadow: 1px 1px 1px red;
|
||||||
|
font-family: "Allerta Stencil script=latin rev=8";
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue