wordpress-starter 0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG.md +1 -0
- data/LICENSE +20 -0
- data/README.md +34 -0
- data/lib/wordpress-starter.rb +29 -0
- data/stylesheets/_wordpress.scss +9 -0
- data/stylesheets/wordpress/_base.scss +74 -0
- data/stylesheets/wordpress/_defaults.scss +28 -0
- data/stylesheets/wordpress/_layout.scss +56 -0
- data/stylesheets/wordpress/_mixins.scss +57 -0
- data/stylesheets/wordpress/_page.scss +364 -0
- data/stylesheets/wordpress/_responsive.scss +231 -0
- data/stylesheets/wordpress/_theme.scss +83 -0
- data/stylesheets/wordpress/_typography.scss +135 -0
- data/stylesheets/wordpress/_utils.scss +64 -0
- data/templates/project/ie.scss +1 -0
- data/templates/project/manifest.rb +21 -0
- data/templates/project/print.css +4 -0
- data/templates/project/print.scss +104 -0
- data/templates/project/readme.txt +1 -0
- data/templates/project/screen.scss +1 -0
- data/templates/project/style.css +13 -0
- data/templates/starter/404.php +24 -0
- data/templates/starter/admin/README.txt +25 -0
- data/templates/starter/admin/assets/css/admin-style.css +838 -0
- data/templates/starter/admin/assets/css/colorpicker.css +177 -0
- data/templates/starter/admin/assets/images/1col.png +0 -0
- data/templates/starter/admin/assets/images/2-col-portfolio.png +0 -0
- data/templates/starter/admin/assets/images/2cl.png +0 -0
- data/templates/starter/admin/assets/images/2cr.png +0 -0
- data/templates/starter/admin/assets/images/3-col-portfolio.png +0 -0
- data/templates/starter/admin/assets/images/3cm.png +0 -0
- data/templates/starter/admin/assets/images/3cr.png +0 -0
- data/templates/starter/admin/assets/images/4-col-portfolio.png +0 -0
- data/templates/starter/admin/assets/images/accept.png +0 -0
- data/templates/starter/admin/assets/images/button_check.png +0 -0
- data/templates/starter/admin/assets/images/colorpicker/blank.gif +0 -0
- data/templates/starter/admin/assets/images/colorpicker/colorpicker_background.png +0 -0
- data/templates/starter/admin/assets/images/colorpicker/colorpicker_hex.png +0 -0
- data/templates/starter/admin/assets/images/colorpicker/colorpicker_hsb_b.png +0 -0
- data/templates/starter/admin/assets/images/colorpicker/colorpicker_hsb_h.png +0 -0
- data/templates/starter/admin/assets/images/colorpicker/colorpicker_hsb_s.png +0 -0
- data/templates/starter/admin/assets/images/colorpicker/colorpicker_indic.gif +0 -0
- data/templates/starter/admin/assets/images/colorpicker/colorpicker_overlay.png +0 -0
- data/templates/starter/admin/assets/images/colorpicker/colorpicker_rgb_b.png +0 -0
- data/templates/starter/admin/assets/images/colorpicker/colorpicker_rgb_g.png +0 -0
- data/templates/starter/admin/assets/images/colorpicker/colorpicker_rgb_r.png +0 -0
- data/templates/starter/admin/assets/images/colorpicker/colorpicker_select.gif +0 -0
- data/templates/starter/admin/assets/images/colorpicker/colorpicker_submit.png +0 -0
- data/templates/starter/admin/assets/images/colorpicker/select.png +0 -0
- data/templates/starter/admin/assets/images/dropdown-arrow.png +0 -0
- data/templates/starter/admin/assets/images/favicon.ico +0 -0
- data/templates/starter/admin/assets/images/icon-add.png +0 -0
- data/templates/starter/admin/assets/images/icon-backup.png +0 -0
- data/templates/starter/admin/assets/images/icon-delete.png +0 -0
- data/templates/starter/admin/assets/images/icon-docs.png +0 -0
- data/templates/starter/admin/assets/images/icon-edit.png +0 -0
- data/templates/starter/admin/assets/images/icon-home.png +0 -0
- data/templates/starter/admin/assets/images/icon-info.png +0 -0
- data/templates/starter/admin/assets/images/icon-notice.png +0 -0
- data/templates/starter/admin/assets/images/icon-paint.png +0 -0
- data/templates/starter/admin/assets/images/icon-settings.png +0 -0
- data/templates/starter/admin/assets/images/icon-slider.png +0 -0
- data/templates/starter/admin/assets/images/icon-warn.png +0 -0
- data/templates/starter/admin/assets/images/icon_option.png +0 -0
- data/templates/starter/admin/assets/images/loading-bottom.gif +0 -0
- data/templates/starter/admin/assets/images/select.png +0 -0
- data/templates/starter/admin/assets/images/sign_warning.png +0 -0
- data/templates/starter/admin/assets/images/stop.png +0 -0
- data/templates/starter/admin/assets/images/toggle_tabs.png +0 -0
- data/templates/starter/admin/assets/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/templates/starter/admin/assets/images/warning.png +0 -0
- data/templates/starter/admin/assets/images/wrench.png +0 -0
- data/templates/starter/admin/assets/images/wrench16.png +0 -0
- data/templates/starter/admin/assets/js/ajaxupload.js +606 -0
- data/templates/starter/admin/assets/js/colorpicker.js +455 -0
- data/templates/starter/admin/assets/js/cookie.js +1 -0
- data/templates/starter/admin/assets/js/jquery.maskedinput-1.2.2.js +252 -0
- data/templates/starter/admin/assets/js/jquery.tipsy.js +241 -0
- data/templates/starter/admin/assets/js/of-medialibrary-uploader.js +168 -0
- data/templates/starter/admin/assets/js/smof.js +623 -0
- data/templates/starter/admin/classes/class.options-machine.php +627 -0
- data/templates/starter/admin/front-end/options.php +77 -0
- data/templates/starter/admin/functions/functions.admin.php +76 -0
- data/templates/starter/admin/functions/functions.interface.php +232 -0
- data/templates/starter/admin/functions/functions.load.php +14 -0
- data/templates/starter/admin/functions/functions.mediauploader.php +194 -0
- data/templates/starter/admin/functions/functions.options.php +507 -0
- data/templates/starter/admin/functions/functions.php +0 -0
- data/templates/starter/admin/index.php +86 -0
- data/templates/starter/admin/layouts/default.css +0 -0
- data/templates/starter/admin/layouts/placebo.css +0 -0
- data/templates/starter/app.js +97 -0
- data/templates/starter/archive.php +57 -0
- data/templates/starter/category.php +40 -0
- data/templates/starter/comments.php +65 -0
- data/templates/starter/content-aside.php +26 -0
- data/templates/starter/content-image.php +29 -0
- data/templates/starter/content-link.php +27 -0
- data/templates/starter/content-none.php +21 -0
- data/templates/starter/content-page.php +24 -0
- data/templates/starter/content-quote.php +26 -0
- data/templates/starter/content-status.php +33 -0
- data/templates/starter/content.php +67 -0
- data/templates/starter/editor-style.scss +359 -0
- data/templates/starter/footer.php +29 -0
- data/templates/starter/functions.php +1211 -0
- data/templates/starter/header.php +63 -0
- data/templates/starter/ie.scss +1 -0
- data/templates/starter/images/bg/bg0.png +0 -0
- data/templates/starter/images/bg/bg1.png +0 -0
- data/templates/starter/images/bg/bg10.png +0 -0
- data/templates/starter/images/bg/bg11.png +0 -0
- data/templates/starter/images/bg/bg2.png +0 -0
- data/templates/starter/images/bg/bg3.png +0 -0
- data/templates/starter/images/bg/bg4.png +0 -0
- data/templates/starter/images/bg/bg5.png +0 -0
- data/templates/starter/images/bg/bg6.jpg +0 -0
- data/templates/starter/images/bg/bg7.jpg +0 -0
- data/templates/starter/images/bg/bg8.png +0 -0
- data/templates/starter/images/bg/bg9.png +0 -0
- data/templates/starter/index.php +19 -0
- data/templates/starter/loop.php +30 -0
- data/templates/starter/manifest.rb +149 -0
- data/templates/starter/moderninzr.min.js +4 -0
- data/templates/starter/options.php +407 -0
- data/templates/starter/page.php +29 -0
- data/templates/starter/print.scss +104 -0
- data/templates/starter/readme.txt +1 -0
- data/templates/starter/screen.scss +1 -0
- data/templates/starter/search.php +31 -0
- data/templates/starter/search.png +0 -0
- data/templates/starter/searchform.php +14 -0
- data/templates/starter/sidebar.php +15 -0
- data/templates/starter/single.php +31 -0
- data/templates/starter/style.css +13 -0
- data/templates/starter/tag.php +41 -0
- metadata +230 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<?php
|
|
2
|
+
/**
|
|
3
|
+
* The template used for displaying page content in page.php
|
|
4
|
+
*
|
|
5
|
+
* @category Theme
|
|
6
|
+
* @package [starter]
|
|
7
|
+
* @author [Your Name]
|
|
8
|
+
* @copyright 2012 [Your Name]
|
|
9
|
+
*/
|
|
10
|
+
?>
|
|
11
|
+
|
|
12
|
+
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
|
13
|
+
<header class="entry-header">
|
|
14
|
+
<h1 class="entry-title"><?php the_title(); ?></h1>
|
|
15
|
+
</header>
|
|
16
|
+
|
|
17
|
+
<div class="entry-content">
|
|
18
|
+
<?php the_content(); ?>
|
|
19
|
+
<?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'starter' ), 'after' => '</div>' ) ); ?>
|
|
20
|
+
</div>
|
|
21
|
+
<footer class="entry-meta">
|
|
22
|
+
<?php edit_post_link( __( 'Edit', 'starter' ), '<span class="edit-link">', '</span>' ); ?>
|
|
23
|
+
</footer>
|
|
24
|
+
</article>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<?php
|
|
2
|
+
/**
|
|
3
|
+
* The template for displaying posts in the Quote post format
|
|
4
|
+
*
|
|
5
|
+
* @category Theme
|
|
6
|
+
* @package [starter]
|
|
7
|
+
* @author [Your Name]
|
|
8
|
+
* @copyright 2012 [Your Name]
|
|
9
|
+
*/
|
|
10
|
+
?>
|
|
11
|
+
|
|
12
|
+
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
|
13
|
+
<div class="entry-content">
|
|
14
|
+
<?php the_content( __( 'Continue reading', 'starter' ) ); ?>
|
|
15
|
+
</div>
|
|
16
|
+
|
|
17
|
+
<footer class="entry-meta">
|
|
18
|
+
<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'starter' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php echo get_the_date(); ?></a>
|
|
19
|
+
<?php if ( comments_open() ) : ?>
|
|
20
|
+
<div class="comments-link">
|
|
21
|
+
<?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'starter' ) . '</span>', __( '1 Reply', 'starter' ), __( '% Replies', 'starter' ) ); ?>
|
|
22
|
+
</div>
|
|
23
|
+
<?php endif; // comments_open() ?>
|
|
24
|
+
<?php edit_post_link( __( 'Edit', 'starter' ), '<span class="edit-link">', '</span>' ); ?>
|
|
25
|
+
</footer>
|
|
26
|
+
</article>
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
<?php
|
|
2
|
+
/**
|
|
3
|
+
* The template for displaying posts in the Status post format
|
|
4
|
+
*
|
|
5
|
+
* @category Theme
|
|
6
|
+
* @package [starter]
|
|
7
|
+
* @author [Your Name]
|
|
8
|
+
* @copyright 2012 [Your Name]
|
|
9
|
+
*/
|
|
10
|
+
?>
|
|
11
|
+
|
|
12
|
+
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
|
13
|
+
<div class="entry-header">
|
|
14
|
+
<?php echo get_avatar( get_the_author_meta( 'ID' ), apply_filters( 'starter_status_avatar', '48' ) ); ?>
|
|
15
|
+
<header>
|
|
16
|
+
<h1 class="entry-title"><?php the_author(); ?></h1>
|
|
17
|
+
<h2><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'starter' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php echo get_the_date(); ?></a></h2>
|
|
18
|
+
</header>
|
|
19
|
+
</div>
|
|
20
|
+
|
|
21
|
+
<div class="entry-content">
|
|
22
|
+
<?php the_content( __( 'Continue reading', 'starter' ) ); ?>
|
|
23
|
+
</div>
|
|
24
|
+
|
|
25
|
+
<footer class="entry-meta">
|
|
26
|
+
<?php if ( comments_open() ) : ?>
|
|
27
|
+
<div class="comments-link">
|
|
28
|
+
<?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'starter' ) . '</span>', __( '1 Reply', 'starter' ), __( '% Replies', 'starter' ) ); ?>
|
|
29
|
+
</div>
|
|
30
|
+
<?php endif; // comments_open() ?>
|
|
31
|
+
<?php edit_post_link( __( 'Edit', 'starter' ), '<span class="edit-link">', '</span>' ); ?>
|
|
32
|
+
</footer>
|
|
33
|
+
</article>
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
<?php
|
|
2
|
+
/**
|
|
3
|
+
* The default template for displaying content. Used for both single and index/archive/search.
|
|
4
|
+
*
|
|
5
|
+
* @category Theme
|
|
6
|
+
* @package [starter]
|
|
7
|
+
* @author [Your Name]
|
|
8
|
+
* @copyright 2012 [Your Name]
|
|
9
|
+
*/
|
|
10
|
+
?>
|
|
11
|
+
|
|
12
|
+
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
|
13
|
+
<?php if ( is_sticky() && is_home() && ! is_paged() ) : ?>
|
|
14
|
+
<div class="featured-post">
|
|
15
|
+
<?php _e( 'Featured post', 'starter' ); ?>
|
|
16
|
+
</div>
|
|
17
|
+
<?php endif; ?>
|
|
18
|
+
<header class="entry-header">
|
|
19
|
+
<?php the_post_thumbnail(); ?>
|
|
20
|
+
<?php if ( is_single() ) : ?>
|
|
21
|
+
<h1 class="entry-title"><?php the_title(); ?></h1>
|
|
22
|
+
<?php else : ?>
|
|
23
|
+
<h1 class="entry-title">
|
|
24
|
+
<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'starter' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a>
|
|
25
|
+
</h1>
|
|
26
|
+
<?php endif; // is_single() ?>
|
|
27
|
+
<?php if ( comments_open() ) : ?>
|
|
28
|
+
<div class="comments-link">
|
|
29
|
+
<?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'starter' ) . '</span>', __( '1 Reply', 'starter' ), __( '% Replies', 'starter' ) ); ?>
|
|
30
|
+
</div>
|
|
31
|
+
<?php endif; // comments_open() ?>
|
|
32
|
+
</header>
|
|
33
|
+
|
|
34
|
+
<?php if ( is_search() ):
|
|
35
|
+
// Only display Excerpts for Search ?>
|
|
36
|
+
<div class="entry-summary">
|
|
37
|
+
<?php the_excerpt(); ?>
|
|
38
|
+
</div>
|
|
39
|
+
<?php else : ?>
|
|
40
|
+
<div class="entry-content">
|
|
41
|
+
<?php the_content( __( 'Continue reading', 'starter' ) ); ?>
|
|
42
|
+
<?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'starter' ), 'after' => '</div>' ) ); ?>
|
|
43
|
+
</div>
|
|
44
|
+
<?php endif; ?>
|
|
45
|
+
|
|
46
|
+
<footer class="entry-meta clearfix">
|
|
47
|
+
<?php starter_entry_meta(); ?>
|
|
48
|
+
<?php edit_post_link( __( 'Edit', 'starter' ), '<span class="edit-link">', '</span>' ); ?>
|
|
49
|
+
<?php if ( is_singular() && get_the_author_meta( 'description' ) && is_multi_author() ):
|
|
50
|
+
// If a user has filled out their description and this is a multi-author blog, show a bio on their entries. ?>
|
|
51
|
+
<div class="author-info clearfix">
|
|
52
|
+
<div class="author-avatar">
|
|
53
|
+
<?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'starter_author_bio_avatar_size', 68 ) ); ?>
|
|
54
|
+
</div>
|
|
55
|
+
<div class="author-description">
|
|
56
|
+
<h2><?php printf( __( 'About %s', 'starter' ), get_the_author() ); ?></h2>
|
|
57
|
+
<p><?php the_author_meta( 'description' ); ?></p>
|
|
58
|
+
<div class="author-link">
|
|
59
|
+
<a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author">
|
|
60
|
+
<?php printf( __( 'View all posts by %s <span class="meta-nav">→</span>', 'starter' ), get_the_author() ); ?>
|
|
61
|
+
</a>
|
|
62
|
+
</div>
|
|
63
|
+
</div>
|
|
64
|
+
</div>
|
|
65
|
+
<?php endif; ?>
|
|
66
|
+
</footer>
|
|
67
|
+
</article>
|
|
@@ -0,0 +1,359 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Theme Name: [starter]
|
|
3
|
+
Description: Used to style the TinyMCE editor.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
html {
|
|
7
|
+
font-size: 87.5%;
|
|
8
|
+
.mceContentBody {
|
|
9
|
+
max-width: 625px;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
body {
|
|
14
|
+
color: #444;
|
|
15
|
+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
16
|
+
font-size: 14px;
|
|
17
|
+
font-size: 1rem;
|
|
18
|
+
line-height: 1;
|
|
19
|
+
text-rendering: optimizeLegibility;
|
|
20
|
+
vertical-align: baseline;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
/* =Headings
|
|
24
|
+
-------------------------------------------------------------- */
|
|
25
|
+
|
|
26
|
+
h1, h2, h3, h4, h5, h6 {
|
|
27
|
+
clear: both;
|
|
28
|
+
line-height: 1.846153846;
|
|
29
|
+
margin: 24px 0;
|
|
30
|
+
margin: 1.714285714rem 0;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
h1 {
|
|
34
|
+
font-size: 21px;
|
|
35
|
+
font-size: 1.5rem;
|
|
36
|
+
line-height: 1.5;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
h2 {
|
|
40
|
+
font-size: 18px;
|
|
41
|
+
font-size: 1.285714286rem;
|
|
42
|
+
line-height: 1.6;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
h3 {
|
|
46
|
+
font-size: 16px;
|
|
47
|
+
font-size: 1.142857143rem;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
h4 {
|
|
51
|
+
font-size: 14px;
|
|
52
|
+
font-size: 1rem;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
h5 {
|
|
56
|
+
font-size: 13px;
|
|
57
|
+
font-size: 0.928571429rem;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
h6 {
|
|
61
|
+
font-size: 12px;
|
|
62
|
+
font-size: 0.857142857rem;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
hr {
|
|
66
|
+
background-color: #ccc;
|
|
67
|
+
border: 0;
|
|
68
|
+
height: 1px;
|
|
69
|
+
margin: 24px;
|
|
70
|
+
margin-bottom: 1.714285714rem;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
/* =Text elements
|
|
74
|
+
-------------------------------------------------------------- */
|
|
75
|
+
|
|
76
|
+
p {
|
|
77
|
+
line-height: 1.714285714;
|
|
78
|
+
margin: 0 0 24px;
|
|
79
|
+
margin: 0 0 1.714285714rem;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
ul, ol {
|
|
83
|
+
margin: 0 0 24px;
|
|
84
|
+
margin: 0 0 1.714285714rem;
|
|
85
|
+
line-height: 1.714285714;
|
|
86
|
+
padding: 0;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
ul {
|
|
90
|
+
list-style: disc outside;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
ol {
|
|
94
|
+
list-style: decimal outside;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
ul ul, ol ol, ul ol, ol ul {
|
|
98
|
+
margin-bottom: 0;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
li {
|
|
102
|
+
margin: 0 0 0 24px;
|
|
103
|
+
margin: 0 0 0 1.714285714rem;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
dl {
|
|
107
|
+
margin: 0 24px;
|
|
108
|
+
margin: 0 1.714285714rem;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
dt {
|
|
112
|
+
font-weight: bold;
|
|
113
|
+
margin-bottom: 24px;
|
|
114
|
+
margin-bottom: 1.714285714rem;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
dd {
|
|
118
|
+
line-height: 1.714285714;
|
|
119
|
+
margin: 0 0 24px;
|
|
120
|
+
margin: 0 0 1.714285714rem;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
strong {
|
|
124
|
+
font-weight: bold;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
cite, em, i {
|
|
128
|
+
font-style: italic;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
cite {
|
|
132
|
+
border: none;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
big {
|
|
136
|
+
font-size: 128.571429%;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.mceContentBody blockquote {
|
|
140
|
+
font-style: italic !important;
|
|
141
|
+
font-weight: normal;
|
|
142
|
+
margin: 0;
|
|
143
|
+
padding: 24px;
|
|
144
|
+
padding: 1.714285714rem;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
pre {
|
|
148
|
+
border: 1px solid #ededed;
|
|
149
|
+
color: #666;
|
|
150
|
+
font-family: Consolas, Monaco, Lucida Console, monospace;
|
|
151
|
+
font-size: 12px;
|
|
152
|
+
font-size: 0.857142857rem;
|
|
153
|
+
line-height: 1.714285714;
|
|
154
|
+
margin: 24px 0;
|
|
155
|
+
margin: 1.714285714rem 0;
|
|
156
|
+
overflow: auto;
|
|
157
|
+
padding: 24px;
|
|
158
|
+
padding: 1.714285714rem;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
code, kbd, samp, var {
|
|
162
|
+
font-family: Consolas, Monaco, Lucida Console, monospace;
|
|
163
|
+
font-size: 12px;
|
|
164
|
+
font-size: 0.857142857rem;
|
|
165
|
+
line-height: 2;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
abbr, acronym, dfn {
|
|
169
|
+
border-bottom: 1px dotted #666;
|
|
170
|
+
cursor: help;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
address {
|
|
174
|
+
display: block;
|
|
175
|
+
line-height: 1.714285714;
|
|
176
|
+
margin: 0 0 24px;
|
|
177
|
+
margin: 0 0 1.714285714rem;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
del {
|
|
181
|
+
color: #333;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
ins {
|
|
185
|
+
background: #fff9c0;
|
|
186
|
+
border: none;
|
|
187
|
+
color: #333;
|
|
188
|
+
text-decoration: none;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
sup, sub {
|
|
192
|
+
font-size: 75%;
|
|
193
|
+
line-height: 0;
|
|
194
|
+
position: relative;
|
|
195
|
+
vertical-align: baseline;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
sup {
|
|
199
|
+
top: -0.5em;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
sub {
|
|
203
|
+
bottom: -0.25em;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
input[type="text"] {
|
|
207
|
+
border: 1px solid #ccc;
|
|
208
|
+
border-radius: 3px;
|
|
209
|
+
font-family: inherit;
|
|
210
|
+
padding: 6px;
|
|
211
|
+
padding: 0.428571429rem;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
textarea {
|
|
215
|
+
border: 1px solid #d5d2ca;
|
|
216
|
+
border-radius: 3px;
|
|
217
|
+
font-family: inherit;
|
|
218
|
+
font-size: 12px;
|
|
219
|
+
font-size: 0.857142857rem;
|
|
220
|
+
line-height: 1.714285714;
|
|
221
|
+
padding: 10px;
|
|
222
|
+
padding: 0.714285714rem;
|
|
223
|
+
width: 96%;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
/* =Links
|
|
227
|
+
-------------------------------------------------------------- */
|
|
228
|
+
|
|
229
|
+
a {
|
|
230
|
+
color: #21759b;
|
|
231
|
+
outline: none;
|
|
232
|
+
em, strong {
|
|
233
|
+
color: #21759b;
|
|
234
|
+
outline: none;
|
|
235
|
+
}
|
|
236
|
+
&:focus, &:active, &:hover {
|
|
237
|
+
color: #0f3647;
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
/* =Alignment
|
|
242
|
+
-------------------------------------------------------------- */
|
|
243
|
+
|
|
244
|
+
.alignleft {
|
|
245
|
+
display: inline;
|
|
246
|
+
float: left;
|
|
247
|
+
margin: 12px 24px 12px 0;
|
|
248
|
+
margin: 0.857142857rem 1.714285714rem 0.857142857rem 0;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.alignright {
|
|
252
|
+
display: inline;
|
|
253
|
+
float: right;
|
|
254
|
+
margin: 12px 0 12px 24px;
|
|
255
|
+
margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.aligncenter {
|
|
259
|
+
clear: both;
|
|
260
|
+
display: block;
|
|
261
|
+
margin-top: 12px;
|
|
262
|
+
margin-top: 0.857142857rem;
|
|
263
|
+
margin-bottom: 12px;
|
|
264
|
+
margin-bottom: 0.857142857rem;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
/* =Tables
|
|
268
|
+
-------------------------------------------------------------- */
|
|
269
|
+
|
|
270
|
+
table {
|
|
271
|
+
border-bottom: 1px solid #ededed;
|
|
272
|
+
border-collapse: collapse;
|
|
273
|
+
border-spacing: 0;
|
|
274
|
+
color: #757575;
|
|
275
|
+
font-size: 12px;
|
|
276
|
+
font-size: 0.857142857rem;
|
|
277
|
+
line-height: 2;
|
|
278
|
+
margin: 0 0 24px;
|
|
279
|
+
margin: 0 0 1.714285714rem;
|
|
280
|
+
width: 100%;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
tr th {
|
|
284
|
+
color: #636363;
|
|
285
|
+
font-size: 11px;
|
|
286
|
+
font-size: 0.785714286rem;
|
|
287
|
+
font-weight: bold;
|
|
288
|
+
line-height: 2.181818182;
|
|
289
|
+
text-align: left;
|
|
290
|
+
text-transform: uppercase;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
td {
|
|
294
|
+
border-top: 1px solid #ededed !important;
|
|
295
|
+
color: #757575;
|
|
296
|
+
font-size: inherit;
|
|
297
|
+
font-weight: normal;
|
|
298
|
+
padding: 6px 10px 6px 0;
|
|
299
|
+
text-align: left;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
/* =Images
|
|
303
|
+
-------------------------------------------------------------- */
|
|
304
|
+
|
|
305
|
+
img, .editor-attachment {
|
|
306
|
+
border: 0;
|
|
307
|
+
border-radius: 3px;
|
|
308
|
+
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
|
|
309
|
+
max-width: 100%;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
img {
|
|
313
|
+
&.size-full {
|
|
314
|
+
width: auto / 9;
|
|
315
|
+
/* Prevent stretching of full-size images in IE8 */
|
|
316
|
+
}
|
|
317
|
+
&[class*="wp-image-"] {
|
|
318
|
+
height: auto;
|
|
319
|
+
max-width: 100%;
|
|
320
|
+
}
|
|
321
|
+
&[class*="align"], &[class*="wp-image-"], &[class*="attachment-"] {
|
|
322
|
+
height: auto;
|
|
323
|
+
/* Make sure images with WordPress-added height and width attributes are scaled correctly */
|
|
324
|
+
}
|
|
325
|
+
&.mceWPnextpage {
|
|
326
|
+
border-radius: 0;
|
|
327
|
+
box-shadow: none;
|
|
328
|
+
}
|
|
329
|
+
&.wp-smiley {
|
|
330
|
+
border: 0;
|
|
331
|
+
border-radius: 0;
|
|
332
|
+
box-shadow: none;
|
|
333
|
+
margin-bottom: 0;
|
|
334
|
+
margin-top: 0;
|
|
335
|
+
padding: 0;
|
|
336
|
+
}
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.wp-caption {
|
|
340
|
+
background: transparent;
|
|
341
|
+
border: none;
|
|
342
|
+
margin: 0;
|
|
343
|
+
padding: 4px;
|
|
344
|
+
text-align: left;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
.wp-caption-dt {
|
|
348
|
+
margin: 0;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
.wp-caption .wp-caption-text, .wp-caption-dd {
|
|
352
|
+
color: #757575;
|
|
353
|
+
font-style: italic;
|
|
354
|
+
font-size: 12px;
|
|
355
|
+
font-size: 0.857142857rem;
|
|
356
|
+
line-height: 2;
|
|
357
|
+
margin: 0 0 24px;
|
|
358
|
+
margin: 0 0 1.71429rem;
|
|
359
|
+
}
|