Committing version 0.9

This commit is contained in:
kjodle 2017-06-04 18:34:05 -04:00
parent 5ab73d2ec1
commit 8c64c50b1b
5 changed files with 1118 additions and 6 deletions

7
readme.txt Normal file → Executable file
View File

@ -3,7 +3,7 @@ Contributors: kjodle
Tags: black, gray, white, fixed-layout, two-columns, left-sidebar, custom-menu, featured-images, post-formats, theme-options, threaded-comments, translation-ready
Requires at least: 4.1
Tested up to: 4.7.5
Stable tag: 0.7
Stable tag: 0.9
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
@ -42,7 +42,8 @@ IM Fell English Font, Copyright 2016 Igino Marini
License: SIL (http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL)
Source: https://www.google.com/fonts/specimen/IM+Fell+English
jQuery Plugin Responsive Drop Down
Source: https://github.com/cssmenumaker/jQuery-Plugin-Responsive-Drop-Down
Superfish jQuery Menu Plugin, Copyright 2015 Joel Birch
License: MIT (http://opensource.org/licenses/mit-license.html)
Source: http://users.tpg.com.au/j_birch/plugins/superfish/
== Notes ==

View File

@ -4,7 +4,7 @@ Theme URI: http://wiki.kjodle.net/Category:Atticus_Finch_Theme
Author: kjodle
Author URI: http://d12webdesign.com/
Description: Description
Version: 0.8.2
Version: 0.9
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: two-columns, left-sidebar, custom-menu, featured-images, post-formats, theme-options, threaded-comments, translation-ready
@ -223,6 +223,16 @@ a.top-button {
color: #3437e5;
}
/* Remove borders on image links */
.post-content a[href$=jpg],
.post-content a[href$=jpeg],
.post-content a[href$=jpe],
.post-content a[href$=png],
.post-content a[href$=gif] {
text-decoration: none;
border: 0 none;
}
.post-title {
font-size: 24px;
margin: 0;

1085
styles/menus.css Executable file

File diff suppressed because it is too large Load Diff

8
styles/mobile.css Normal file → Executable file
View File

@ -6,7 +6,7 @@
body {
background: #fff;
color: brown;
color: #333;
}
body > header {
@ -91,6 +91,10 @@ body > footer {
margin-bottom: 0;
}
blockquote {
margin: 0 1em;
}
/* Mobile Menu Adjustments */
@ -105,4 +109,4 @@ body > footer {
#footermenu li.current-menu-item a {
color: #333;
}
*/
*/

View File

@ -17,6 +17,7 @@ body,
width: 100%;
padding: 0;
margin: 0;
color: #000;
}
.post li {
@ -76,3 +77,14 @@ body,
.post-content a:after {
content:" [URL: " attr(href) "] ";
}
/* Remove borders on image links */
.post-content a[href$=jpg]:after,
.post-content a[href$=jpeg]:after,
.post-content a[href$=jpe]:after,
.post-content a[href$=png]:after,
.post-content a[href$=gif]:after {
content:"\A[Image location: " attr(href) "] ";
}