The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
/*
|
2012-08-24 23:08:35 +02:00
|
|
|
Theme Name: Twenty Twelve
|
2015-03-20 02:32:26 +01:00
|
|
|
Theme URI: https://wordpress.org/themes/twentytwelve/
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
Author: the WordPress team
|
2015-03-20 02:22:26 +01:00
|
|
|
Author URI: https://wordpress.org/
|
2012-10-02 00:08:24 +02:00
|
|
|
Description: The 2012 theme for WordPress is a fully responsive theme that looks great on any device. Features include a front page template with its own widgets, an optional display font, styling for post formats on both index and single views, and an optional no-sidebar page template. Make it yours with a custom menu, header image, and background.
|
2022-05-20 03:49:16 +02:00
|
|
|
Version: 3.7
|
|
|
|
Tested up to: 6.0
|
2019-11-07 16:19:04 +01:00
|
|
|
Requires at least: 3.5
|
|
|
|
Requires PHP: 5.2.4
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
License: GNU General Public License v2 or later
|
|
|
|
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
2021-05-26 18:39:58 +02:00
|
|
|
Tags: blog, one-column, two-columns, right-sidebar, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, footer-widgets, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready, block-patterns
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
Text Domain: twentytwelve
|
|
|
|
|
|
|
|
This theme, like WordPress, is licensed under the GPL.
|
|
|
|
Use it to make something cool, have fun, and share what you've learned with others.
|
|
|
|
*/
|
|
|
|
|
2012-07-25 18:46:21 +02:00
|
|
|
/* =Notes
|
|
|
|
--------------------------------------------------------------
|
|
|
|
This stylesheet uses rem values with a pixel fallback. The rem
|
|
|
|
values (and line heights) are calculated using two variables:
|
|
|
|
|
2012-08-02 19:50:52 +02:00
|
|
|
$rembase: 14;
|
|
|
|
$line-height: 24;
|
2012-07-25 18:46:21 +02:00
|
|
|
|
|
|
|
---------- Examples
|
|
|
|
|
|
|
|
* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
|
|
|
|
padding: 5px 0;
|
|
|
|
padding: 0.357142857rem 0; (5 / $rembase)
|
|
|
|
|
|
|
|
* Set a font-size and then set a line-height based on the font-size
|
|
|
|
font-size: 16px
|
|
|
|
font-size: 1.142857143rem; (16 / $rembase)
|
2012-09-27 20:43:39 +02:00
|
|
|
line-height: 1.5; ($line-height / 16)
|
2012-07-25 18:46:21 +02:00
|
|
|
|
|
|
|
---------- Vertical spacing
|
|
|
|
|
|
|
|
Vertical spacing between most elements should use 24px or 48px
|
|
|
|
to maintain vertical rhythm:
|
|
|
|
|
|
|
|
.my-new-div {
|
|
|
|
margin: 24px 0;
|
|
|
|
margin: 1.714285714rem 0; ( 24 / $rembase )
|
|
|
|
}
|
|
|
|
|
|
|
|
---------- Further reading
|
|
|
|
|
|
|
|
http://snook.ca/archives/html_and_css/font-size-with-rem
|
|
|
|
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/
|
|
|
|
|
|
|
|
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
/* =Reset
|
|
|
|
-------------------------------------------------------------- */
|
|
|
|
|
|
|
|
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
font-size: 100%;
|
|
|
|
vertical-align: baseline;
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
line-height: 1;
|
|
|
|
}
|
2012-08-02 23:06:03 +02:00
|
|
|
ol,
|
|
|
|
ul {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
list-style: none;
|
|
|
|
}
|
2012-08-02 23:06:03 +02:00
|
|
|
blockquote,
|
|
|
|
q {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
quotes: none;
|
|
|
|
}
|
|
|
|
blockquote:before,
|
|
|
|
blockquote:after,
|
|
|
|
q:before,
|
|
|
|
q:after {
|
|
|
|
content: '';
|
|
|
|
content: none;
|
|
|
|
}
|
|
|
|
table {
|
|
|
|
border-collapse: collapse;
|
|
|
|
border-spacing: 0;
|
|
|
|
}
|
|
|
|
caption,
|
|
|
|
th,
|
|
|
|
td {
|
|
|
|
font-weight: normal;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
html {
|
|
|
|
overflow-y: scroll;
|
|
|
|
font-size: 100%;
|
|
|
|
-webkit-text-size-adjust: 100%;
|
|
|
|
-ms-text-size-adjust: 100%;
|
|
|
|
}
|
|
|
|
a:focus {
|
|
|
|
outline: thin dotted;
|
|
|
|
}
|
|
|
|
article,
|
|
|
|
aside,
|
|
|
|
details,
|
|
|
|
figcaption,
|
|
|
|
figure,
|
|
|
|
footer,
|
|
|
|
header,
|
|
|
|
hgroup,
|
|
|
|
nav,
|
|
|
|
section {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
audio,
|
|
|
|
canvas,
|
|
|
|
video {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
audio:not([controls]) {
|
|
|
|
display: none;
|
|
|
|
}
|
2012-08-02 22:27:23 +02:00
|
|
|
del {
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
ins {
|
|
|
|
background: #fff9c0;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
hr {
|
|
|
|
background-color: #ccc;
|
|
|
|
border: 0;
|
|
|
|
height: 1px;
|
|
|
|
margin: 24px;
|
|
|
|
margin-bottom: 1.714285714rem;
|
|
|
|
}
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
sub,
|
|
|
|
sup {
|
|
|
|
font-size: 75%;
|
|
|
|
line-height: 0;
|
|
|
|
position: relative;
|
|
|
|
vertical-align: baseline;
|
|
|
|
}
|
|
|
|
sup {
|
|
|
|
top: -0.5em;
|
|
|
|
}
|
|
|
|
sub {
|
|
|
|
bottom: -0.25em;
|
|
|
|
}
|
2012-10-12 17:24:23 +02:00
|
|
|
small {
|
|
|
|
font-size: smaller;
|
|
|
|
}
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
img {
|
|
|
|
border: 0;
|
|
|
|
-ms-interpolation-mode: bicubic;
|
|
|
|
}
|
2012-07-25 20:44:37 +02:00
|
|
|
|
|
|
|
/* Clearing floats */
|
2012-09-19 19:38:30 +02:00
|
|
|
.clear:after,
|
2012-09-20 23:51:48 +02:00
|
|
|
.wrapper:after,
|
|
|
|
.format-status .entry-header:after {
|
2012-07-25 20:44:37 +02:00
|
|
|
clear: both;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
}
|
|
|
|
.clear:before,
|
2012-09-19 19:38:30 +02:00
|
|
|
.clear:after,
|
|
|
|
.wrapper:before,
|
2012-09-20 23:51:48 +02:00
|
|
|
.wrapper:after,
|
|
|
|
.format-status .entry-header:before,
|
|
|
|
.format-status .entry-header:after {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
display: table;
|
|
|
|
content: "";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* =Repeatable patterns
|
|
|
|
-------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/* Small headers */
|
|
|
|
.archive-title,
|
|
|
|
.page-title,
|
2012-07-25 21:15:55 +02:00
|
|
|
.widget-title,
|
|
|
|
.entry-content th,
|
|
|
|
.comment-content th {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
font-size: 11px;
|
|
|
|
font-size: 0.785714286rem;
|
|
|
|
line-height: 2.181818182;
|
|
|
|
font-weight: bold;
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: #636363;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Shared Post Format styling */
|
|
|
|
article.format-quote footer.entry-meta,
|
2012-09-04 07:00:19 +02:00
|
|
|
article.format-link footer.entry-meta,
|
|
|
|
article.format-status footer.entry-meta {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
font-size: 11px;
|
|
|
|
font-size: 0.785714286rem;
|
|
|
|
line-height: 2.181818182;
|
|
|
|
}
|
|
|
|
|
2012-11-28 19:17:38 +01:00
|
|
|
/* Form fields, general styles first */
|
|
|
|
button,
|
|
|
|
input,
|
2014-03-17 22:58:16 +01:00
|
|
|
select,
|
2012-11-28 19:17:38 +01:00
|
|
|
textarea {
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
border-radius: 3px;
|
|
|
|
font-family: inherit;
|
|
|
|
padding: 6px;
|
|
|
|
padding: 0.428571429rem;
|
|
|
|
}
|
|
|
|
button,
|
|
|
|
input {
|
2013-05-08 00:17:23 +02:00
|
|
|
line-height: normal;
|
2012-11-28 19:17:38 +01:00
|
|
|
}
|
|
|
|
textarea {
|
|
|
|
font-size: 100%;
|
|
|
|
overflow: auto;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Reset non-text input types */
|
|
|
|
input[type="checkbox"],
|
|
|
|
input[type="radio"],
|
|
|
|
input[type="file"],
|
|
|
|
input[type="hidden"],
|
|
|
|
input[type="image"],
|
|
|
|
input[type="color"] {
|
|
|
|
border: 0;
|
|
|
|
border-radius: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
/* Buttons */
|
|
|
|
.menu-toggle,
|
2012-08-06 02:19:29 +02:00
|
|
|
input[type="submit"],
|
2012-11-28 19:17:38 +01:00
|
|
|
input[type="button"],
|
|
|
|
input[type="reset"],
|
2012-07-18 20:03:38 +02:00
|
|
|
article.post-password-required input[type=submit],
|
2013-03-15 18:54:36 +01:00
|
|
|
.bypostauthor cite span {
|
2012-08-06 00:39:26 +02:00
|
|
|
padding: 6px 10px;
|
|
|
|
padding: 0.428571429rem 0.714285714rem;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
font-size: 11px;
|
|
|
|
font-size: 0.785714286rem;
|
2012-08-06 00:39:26 +02:00
|
|
|
line-height: 1.428571429;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
font-weight: normal;
|
|
|
|
color: #7c7c7c;
|
|
|
|
background-color: #e6e6e6;
|
|
|
|
background-repeat: repeat-x;
|
|
|
|
background-image: -moz-linear-gradient(top, #f4f4f4, #e6e6e6);
|
|
|
|
background-image: -ms-linear-gradient(top, #f4f4f4, #e6e6e6);
|
|
|
|
background-image: -webkit-linear-gradient(top, #f4f4f4, #e6e6e6);
|
|
|
|
background-image: -o-linear-gradient(top, #f4f4f4, #e6e6e6);
|
2019-04-06 18:17:50 +02:00
|
|
|
background-image: linear-gradient(to bottom, #f4f4f4, #e6e6e6);
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
border: 1px solid #d2d2d2;
|
|
|
|
border-radius: 3px;
|
|
|
|
box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);
|
|
|
|
}
|
|
|
|
.menu-toggle,
|
2012-11-28 19:17:38 +01:00
|
|
|
button,
|
2012-08-06 02:19:29 +02:00
|
|
|
input[type="submit"],
|
2012-11-28 19:17:38 +01:00
|
|
|
input[type="button"],
|
|
|
|
input[type="reset"] {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
2012-11-28 19:17:38 +01:00
|
|
|
button[disabled],
|
|
|
|
input[disabled] {
|
2013-05-08 00:17:23 +02:00
|
|
|
cursor: default;
|
2012-11-28 19:17:38 +01:00
|
|
|
}
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
.menu-toggle:hover,
|
2014-07-11 19:47:14 +02:00
|
|
|
.menu-toggle:focus,
|
2012-11-28 19:17:38 +01:00
|
|
|
button:hover,
|
2012-08-06 02:19:29 +02:00
|
|
|
input[type="submit"]:hover,
|
2012-11-28 19:17:38 +01:00
|
|
|
input[type="button"]:hover,
|
|
|
|
input[type="reset"]:hover,
|
2012-07-18 20:03:38 +02:00
|
|
|
article.post-password-required input[type=submit]:hover {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
color: #5e5e5e;
|
|
|
|
background-color: #ebebeb;
|
|
|
|
background-repeat: repeat-x;
|
|
|
|
background-image: -moz-linear-gradient(top, #f9f9f9, #ebebeb);
|
|
|
|
background-image: -ms-linear-gradient(top, #f9f9f9, #ebebeb);
|
|
|
|
background-image: -webkit-linear-gradient(top, #f9f9f9, #ebebeb);
|
|
|
|
background-image: -o-linear-gradient(top, #f9f9f9, #ebebeb);
|
2019-04-06 18:17:50 +02:00
|
|
|
background-image: linear-gradient(to bottom, #f9f9f9, #ebebeb);
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
}
|
2012-08-02 21:53:45 +02:00
|
|
|
.menu-toggle:active,
|
|
|
|
.menu-toggle.toggled-on,
|
2012-11-28 19:17:38 +01:00
|
|
|
button:active,
|
2012-08-06 02:19:29 +02:00
|
|
|
input[type="submit"]:active,
|
2012-11-28 19:17:38 +01:00
|
|
|
input[type="button"]:active,
|
|
|
|
input[type="reset"]:active {
|
2012-11-14 21:13:04 +01:00
|
|
|
color: #757575;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
background-color: #e1e1e1;
|
|
|
|
background-repeat: repeat-x;
|
|
|
|
background-image: -moz-linear-gradient(top, #ebebeb, #e1e1e1);
|
|
|
|
background-image: -ms-linear-gradient(top, #ebebeb, #e1e1e1);
|
|
|
|
background-image: -webkit-linear-gradient(top, #ebebeb, #e1e1e1);
|
|
|
|
background-image: -o-linear-gradient(top, #ebebeb, #e1e1e1);
|
2019-04-06 18:17:50 +02:00
|
|
|
background-image: linear-gradient(to bottom, #ebebeb, #e1e1e1);
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
box-shadow: inset 0 0 8px 2px #c6c6c6, 0 1px 0 0 #f4f4f4;
|
2013-02-15 17:34:56 +01:00
|
|
|
border-color: transparent;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
}
|
2013-03-15 18:54:36 +01:00
|
|
|
.bypostauthor cite span {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
color: #fff;
|
|
|
|
background-color: #21759b;
|
2012-08-01 19:34:31 +02:00
|
|
|
background-image: none;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
border: 1px solid #1f6f93;
|
2012-08-01 19:34:31 +02:00
|
|
|
border-radius: 2px;
|
|
|
|
box-shadow: none;
|
|
|
|
padding: 0;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Responsive images */
|
|
|
|
.entry-content img,
|
|
|
|
.comment-content img,
|
|
|
|
.widget img {
|
|
|
|
max-width: 100%; /* Fluid images for posts, comments, and widgets */
|
|
|
|
}
|
|
|
|
img[class*="align"],
|
|
|
|
img[class*="wp-image-"],
|
|
|
|
img[class*="attachment-"] {
|
|
|
|
height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
|
|
|
|
}
|
|
|
|
img.size-full,
|
|
|
|
img.size-large,
|
|
|
|
img.header-image,
|
|
|
|
img.wp-post-image {
|
|
|
|
max-width: 100%;
|
|
|
|
height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
|
|
|
|
}
|
|
|
|
|
2012-08-02 22:57:47 +02:00
|
|
|
/* Make sure videos and embeds fit their containers */
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
embed,
|
2012-08-02 22:57:47 +02:00
|
|
|
iframe,
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
object,
|
|
|
|
video {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
2012-08-28 04:18:43 +02:00
|
|
|
.entry-content .twitter-tweet-rendered {
|
2012-08-28 03:29:16 +02:00
|
|
|
max-width: 100% !important; /* Override the Twitter embed fixed width */
|
|
|
|
}
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
|
|
|
|
/* Images */
|
|
|
|
.alignleft {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
.alignright {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
.aligncenter {
|
|
|
|
display: block;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
.entry-content img,
|
|
|
|
.comment-content img,
|
|
|
|
.widget img,
|
|
|
|
img.header-image,
|
2012-09-21 18:39:38 +02:00
|
|
|
.author-avatar img,
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
img.wp-post-image {
|
|
|
|
/* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */
|
|
|
|
border-radius: 3px;
|
|
|
|
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
|
|
|
|
}
|
|
|
|
.wp-caption {
|
2012-08-02 22:53:38 +02:00
|
|
|
max-width: 100%; /* Keep wide captions from overflowing their container. */
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
.wp-caption .wp-caption-text,
|
|
|
|
.gallery-caption,
|
|
|
|
.entry-caption {
|
|
|
|
font-style: italic;
|
|
|
|
font-size: 12px;
|
|
|
|
font-size: 0.857142857rem;
|
|
|
|
line-height: 2;
|
2012-11-14 21:13:04 +01:00
|
|
|
color: #757575;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
}
|
2012-08-28 03:18:12 +02:00
|
|
|
img.wp-smiley,
|
2012-08-06 00:20:35 +02:00
|
|
|
.rsswidget img {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
border: 0;
|
|
|
|
border-radius: 0;
|
|
|
|
box-shadow: none;
|
|
|
|
margin-bottom: 0;
|
|
|
|
margin-top: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.entry-content dl.gallery-item {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2012-10-25 18:01:23 +02:00
|
|
|
.gallery-item a,
|
|
|
|
.gallery-caption {
|
|
|
|
width: 90%;
|
|
|
|
}
|
2012-08-08 18:38:21 +02:00
|
|
|
.gallery-item a {
|
|
|
|
display: block;
|
2012-10-25 18:01:23 +02:00
|
|
|
}
|
|
|
|
.gallery-caption a {
|
|
|
|
display: inline;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
}
|
2012-08-08 18:38:21 +02:00
|
|
|
.gallery-columns-1 .gallery-item a {
|
|
|
|
max-width: 100%;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
.gallery .gallery-icon img {
|
|
|
|
height: auto;
|
|
|
|
max-width: 90%;
|
|
|
|
padding: 5%;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
}
|
2012-08-08 18:38:21 +02:00
|
|
|
.gallery-columns-1 .gallery-icon img {
|
|
|
|
padding: 3%;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Navigation */
|
2012-08-02 21:12:11 +02:00
|
|
|
.site-content nav {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
clear: both;
|
|
|
|
line-height: 2;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
#nav-above {
|
|
|
|
padding: 24px 0;
|
|
|
|
padding: 1.714285714rem 0;
|
|
|
|
}
|
|
|
|
#nav-above {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.paged #nav-above {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.nav-previous,
|
|
|
|
.previous-image {
|
|
|
|
float: left;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
.nav-next,
|
|
|
|
.next-image {
|
|
|
|
float: right;
|
|
|
|
text-align: right;
|
|
|
|
width: 50%;
|
|
|
|
}
|
2012-08-02 21:12:11 +02:00
|
|
|
.nav-single + .comments-area,
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
#comment-nav-above {
|
|
|
|
margin: 48px 0;
|
|
|
|
margin: 3.428571429rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Author profiles */
|
2012-08-06 23:05:02 +02:00
|
|
|
.author .archive-header {
|
|
|
|
margin-bottom: 24px;
|
|
|
|
margin-bottom: 1.714285714rem;
|
|
|
|
}
|
2012-09-21 18:39:38 +02:00
|
|
|
.author-info {
|
2012-07-25 20:44:37 +02:00
|
|
|
border-top: 1px solid #ededed;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin: 24px 0;
|
|
|
|
margin: 1.714285714rem 0;
|
|
|
|
padding-top: 24px;
|
|
|
|
padding-top: 1.714285714rem;
|
2012-07-25 20:44:37 +02:00
|
|
|
overflow: hidden;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
}
|
2012-09-21 18:39:38 +02:00
|
|
|
.author-description p {
|
2012-11-14 21:13:04 +01:00
|
|
|
color: #757575;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
font-size: 13px;
|
|
|
|
font-size: 0.928571429rem;
|
|
|
|
line-height: 1.846153846;
|
|
|
|
}
|
2012-09-21 18:39:38 +02:00
|
|
|
.author.archive .author-info {
|
2012-08-06 23:05:02 +02:00
|
|
|
border-top: 0;
|
|
|
|
margin: 0 0 48px;
|
|
|
|
margin: 0 0 3.428571429rem;
|
|
|
|
}
|
2012-09-21 18:39:38 +02:00
|
|
|
.author.archive .author-avatar {
|
2012-08-06 23:05:02 +02:00
|
|
|
margin-top: 0;
|
|
|
|
}
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* =Basic structure
|
|
|
|
-------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/* Body, links, basics */
|
|
|
|
html {
|
|
|
|
font-size: 87.5%;
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
font-size: 14px;
|
|
|
|
font-size: 1rem;
|
2012-08-30 18:59:22 +02:00
|
|
|
font-family: Helvetica, Arial, sans-serif;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
text-rendering: optimizeLegibility;
|
|
|
|
color: #444;
|
|
|
|
}
|
2012-08-30 18:59:22 +02:00
|
|
|
body.custom-font-enabled {
|
|
|
|
font-family: "Open Sans", Helvetica, Arial, sans-serif;
|
|
|
|
}
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
a {
|
|
|
|
outline: none;
|
|
|
|
color: #21759b;
|
|
|
|
}
|
|
|
|
a:hover {
|
|
|
|
color: #0f3647;
|
|
|
|
}
|
2012-08-17 19:23:49 +02:00
|
|
|
|
2012-07-13 02:08:52 +02:00
|
|
|
/* Assistive text */
|
2012-10-11 19:36:46 +02:00
|
|
|
.assistive-text,
|
|
|
|
.site .screen-reader-text {
|
2012-07-13 02:08:52 +02:00
|
|
|
position: absolute !important;
|
|
|
|
clip: rect(1px, 1px, 1px, 1px);
|
2015-02-14 18:29:29 +01:00
|
|
|
overflow: hidden;
|
|
|
|
height: 1px;
|
|
|
|
width: 1px;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
}
|
2015-01-22 01:56:22 +01:00
|
|
|
.main-navigation .assistive-text:focus,
|
|
|
|
.site .screen-reader-text:hover,
|
|
|
|
.site .screen-reader-text:active,
|
|
|
|
.site .screen-reader-text:focus {
|
2012-10-11 19:17:55 +02:00
|
|
|
background: #fff;
|
|
|
|
border: 2px solid #333;
|
|
|
|
border-radius: 3px;
|
|
|
|
clip: auto !important;
|
|
|
|
color: #000;
|
|
|
|
display: block;
|
|
|
|
font-size: 12px;
|
2015-05-11 23:01:28 +02:00
|
|
|
height: auto;
|
2012-10-11 19:17:55 +02:00
|
|
|
padding: 12px;
|
|
|
|
position: absolute;
|
|
|
|
top: 5px;
|
|
|
|
left: 5px;
|
2015-05-11 23:01:28 +02:00
|
|
|
width: auto;
|
2012-10-11 19:17:55 +02:00
|
|
|
z-index: 100000; /* Above WP toolbar */
|
|
|
|
}
|
|
|
|
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
/* Page structure */
|
2012-08-02 21:12:11 +02:00
|
|
|
.site {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
padding: 0 24px;
|
|
|
|
padding: 0 1.714285714rem;
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
2012-08-02 21:12:11 +02:00
|
|
|
.site-content {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin: 24px 0 0;
|
|
|
|
margin: 1.714285714rem 0 0;
|
|
|
|
}
|
2012-08-02 21:12:11 +02:00
|
|
|
.widget-area {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin: 24px 0 0;
|
|
|
|
margin: 1.714285714rem 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Header */
|
|
|
|
.site-header {
|
|
|
|
padding: 24px 0;
|
|
|
|
padding: 1.714285714rem 0;
|
|
|
|
}
|
2012-08-02 20:28:10 +02:00
|
|
|
.site-header h1,
|
|
|
|
.site-header h2 {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
text-align: center;
|
|
|
|
}
|
2012-08-02 20:28:10 +02:00
|
|
|
.site-header h1 a,
|
|
|
|
.site-header h2 a {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
color: #515151;
|
2012-08-06 00:42:46 +02:00
|
|
|
display: inline-block;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
2012-08-02 20:28:10 +02:00
|
|
|
.site-header h1 a:hover,
|
|
|
|
.site-header h2 a:hover {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
color: #21759b;
|
|
|
|
}
|
2012-08-02 20:28:10 +02:00
|
|
|
.site-header h1 {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
font-size: 24px;
|
|
|
|
font-size: 1.714285714rem;
|
2012-11-02 17:48:11 +01:00
|
|
|
line-height: 1.285714286;
|
|
|
|
margin-bottom: 14px;
|
|
|
|
margin-bottom: 1rem;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
}
|
2012-08-02 20:28:10 +02:00
|
|
|
.site-header h2 {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
font-weight: normal;
|
|
|
|
font-size: 13px;
|
|
|
|
font-size: 0.928571429rem;
|
|
|
|
line-height: 1.846153846;
|
2012-11-14 21:13:04 +01:00
|
|
|
color: #757575;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
}
|
|
|
|
.header-image {
|
|
|
|
margin-top: 24px;
|
|
|
|
margin-top: 1.714285714rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Navigation Menu */
|
2012-08-20 20:35:33 +02:00
|
|
|
.main-navigation {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin-top: 24px;
|
|
|
|
margin-top: 1.714285714rem;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2012-08-20 20:35:33 +02:00
|
|
|
.main-navigation li {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin-top: 24px;
|
|
|
|
margin-top: 1.714285714rem;
|
|
|
|
font-size: 12px;
|
|
|
|
font-size: 0.857142857rem;
|
2012-08-20 23:44:38 +02:00
|
|
|
line-height: 1.42857143;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
}
|
2012-08-20 20:35:33 +02:00
|
|
|
.main-navigation a {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
color: #5e5e5e;
|
|
|
|
}
|
2014-03-19 06:29:16 +01:00
|
|
|
.main-navigation a:hover,
|
|
|
|
.main-navigation a:focus {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
color: #21759b;
|
|
|
|
}
|
2012-08-24 23:07:19 +02:00
|
|
|
.main-navigation ul.nav-menu,
|
|
|
|
.main-navigation div.nav-menu > ul {
|
2012-08-20 20:35:33 +02:00
|
|
|
display: none;
|
|
|
|
}
|
2012-08-24 23:07:19 +02:00
|
|
|
.main-navigation ul.nav-menu.toggled-on,
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
.menu-toggle {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Banner */
|
|
|
|
section[role="banner"] {
|
|
|
|
margin-bottom: 48px;
|
|
|
|
margin-bottom: 3.428571429rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Sidebar */
|
2012-08-02 21:12:11 +02:00
|
|
|
.widget-area .widget {
|
2012-08-15 07:25:40 +02:00
|
|
|
-webkit-hyphens: auto;
|
2012-09-04 05:47:24 +02:00
|
|
|
-moz-hyphens: auto;
|
2012-08-15 07:25:40 +02:00
|
|
|
hyphens: auto;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin-bottom: 48px;
|
|
|
|
margin-bottom: 3.428571429rem;
|
2012-11-14 22:34:10 +01:00
|
|
|
word-wrap: break-word;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
}
|
2012-08-02 21:12:11 +02:00
|
|
|
.widget-area .widget h3 {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin-bottom: 24px;
|
|
|
|
margin-bottom: 1.714285714rem;
|
|
|
|
}
|
2012-08-02 21:12:11 +02:00
|
|
|
.widget-area .widget p,
|
2012-08-28 03:23:13 +02:00
|
|
|
.widget-area .widget li,
|
|
|
|
.widget-area .widget .textwidget {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
font-size: 13px;
|
|
|
|
font-size: 0.928571429rem;
|
|
|
|
line-height: 1.846153846;
|
|
|
|
}
|
2012-09-25 01:17:52 +02:00
|
|
|
.widget-area .widget p {
|
|
|
|
margin-bottom: 24px;
|
|
|
|
margin-bottom: 1.714285714rem;
|
|
|
|
}
|
2017-05-25 17:19:42 +02:00
|
|
|
.widget-area .textwidget ul,
|
|
|
|
.widget-area .textwidget ol {
|
2012-09-25 01:17:52 +02:00
|
|
|
list-style: disc outside;
|
|
|
|
margin: 0 0 24px;
|
|
|
|
margin: 0 0 1.714285714rem;
|
|
|
|
}
|
2017-05-25 17:19:42 +02:00
|
|
|
.widget-area .textwidget li > ul,
|
|
|
|
.widget-area .textwidget li > ol {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
.widget-area .textwidget ol {
|
|
|
|
list-style: decimal;
|
|
|
|
}
|
2012-09-25 01:17:52 +02:00
|
|
|
.widget-area .textwidget li {
|
|
|
|
margin-left: 36px;
|
|
|
|
margin-left: 2.571428571rem;
|
|
|
|
}
|
2012-08-02 21:12:11 +02:00
|
|
|
.widget-area .widget a {
|
2012-11-14 21:13:04 +01:00
|
|
|
color: #757575;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
}
|
2012-08-02 21:12:11 +02:00
|
|
|
.widget-area .widget a:hover {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
color: #21759b;
|
|
|
|
}
|
2013-03-01 17:56:15 +01:00
|
|
|
.widget-area .widget a:visited {
|
|
|
|
color: #9f9f9f;
|
|
|
|
}
|
2012-10-11 20:20:53 +02:00
|
|
|
.widget-area #s {
|
|
|
|
width: 53.66666666666%; /* define a width to avoid dropping a wider submit button */
|
|
|
|
}
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
|
|
|
|
/* Footer */
|
|
|
|
footer[role="contentinfo"] {
|
2012-07-25 20:44:37 +02:00
|
|
|
border-top: 1px solid #ededed;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
clear: both;
|
2012-08-30 18:25:31 +02:00
|
|
|
font-size: 12px;
|
|
|
|
font-size: 0.857142857rem;
|
|
|
|
line-height: 2;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
max-width: 960px;
|
|
|
|
max-width: 68.571428571rem;
|
|
|
|
margin-top: 24px;
|
|
|
|
margin-top: 1.714285714rem;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
padding: 24px 0;
|
|
|
|
padding: 1.714285714rem 0;
|
|
|
|
}
|
|
|
|
footer[role="contentinfo"] a {
|
|
|
|
color: #686868;
|
|
|
|
}
|
|
|
|
footer[role="contentinfo"] a:hover {
|
|
|
|
color: #21759b;
|
|
|
|
}
|
Bundled Themes: Add link to privacy policy page in footer.
If a privacy policy has been set, then a link to it will automatically be shown in the footer.
The element containing the "Proudly powered by WordPress" link was chosen for the new policy link, in order to minimize visual conflicts with custom CSS that was written before the new link existed. Unfortunately, some minor conflicts are expected and unavoidable. Adding this link is required as part of GDPR compliance, and the benefits outweigh the downsides.
To further mitigate the conflicts, a new `imprint` class was added to the "Proudly powered..." link, in order to facilitate targeting each link invididually with custom styles.
Props xkon, laurelfulford, birgire, azaozz, iandunn.
See #43715.
Built from https://develop.svn.wordpress.org/trunk@43051
git-svn-id: http://core.svn.wordpress.org/trunk@42880 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-05-01 08:28:21 +02:00
|
|
|
.site-info span[role=separator] {
|
|
|
|
padding: 0 0.3em 0 0.6em;
|
|
|
|
}
|
|
|
|
.site-info span[role=separator]::before {
|
|
|
|
content: '\002f';
|
|
|
|
}
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
|
|
|
|
|
2012-11-14 23:04:25 +01:00
|
|
|
/* =Main content and comment content
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
-------------------------------------------------------------- */
|
|
|
|
|
|
|
|
.entry-meta {
|
|
|
|
clear: both;
|
|
|
|
}
|
2012-08-02 20:28:10 +02:00
|
|
|
.entry-header {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin-bottom: 24px;
|
|
|
|
margin-bottom: 1.714285714rem;
|
|
|
|
}
|
2012-08-02 20:28:10 +02:00
|
|
|
.entry-header img.wp-post-image {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin-bottom: 24px;
|
|
|
|
margin-bottom: 1.714285714rem;
|
|
|
|
}
|
2012-08-02 20:28:10 +02:00
|
|
|
.entry-header .entry-title {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
font-size: 20px;
|
|
|
|
font-size: 1.428571429rem;
|
|
|
|
line-height: 1.2;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
2012-08-02 20:28:10 +02:00
|
|
|
.entry-header .entry-title a {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
2012-08-02 20:28:10 +02:00
|
|
|
.entry-header .entry-format {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin-top: 24px;
|
|
|
|
margin-top: 1.714285714rem;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
2012-08-02 20:28:10 +02:00
|
|
|
.entry-header .comments-link {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin-top: 24px;
|
|
|
|
margin-top: 1.714285714rem;
|
|
|
|
font-size: 13px;
|
|
|
|
font-size: 0.928571429rem;
|
|
|
|
line-height: 1.846153846;
|
2012-11-14 21:13:04 +01:00
|
|
|
color: #757575;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
}
|
|
|
|
.comments-link a,
|
|
|
|
.entry-meta a {
|
2012-11-14 21:13:04 +01:00
|
|
|
color: #757575;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
}
|
|
|
|
.comments-link a:hover,
|
|
|
|
.entry-meta a:hover {
|
|
|
|
color: #21759b;
|
|
|
|
}
|
|
|
|
article.sticky .featured-post {
|
2012-08-01 19:34:31 +02:00
|
|
|
border-top: 4px double #ededed;
|
|
|
|
border-bottom: 4px double #ededed;
|
2012-11-14 21:13:04 +01:00
|
|
|
color: #757575;
|
2012-08-01 19:34:31 +02:00
|
|
|
font-size: 13px;
|
|
|
|
font-size: 0.928571429rem;
|
|
|
|
line-height: 3.692307692;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin-bottom: 24px;
|
|
|
|
margin-bottom: 1.714285714rem;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2012-08-06 22:48:47 +02:00
|
|
|
.entry-content,
|
2012-11-14 23:04:25 +01:00
|
|
|
.entry-summary,
|
|
|
|
.mu_register {
|
2012-08-06 22:48:47 +02:00
|
|
|
line-height: 1.714285714;
|
|
|
|
}
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
.entry-content h1,
|
2012-07-18 20:03:38 +02:00
|
|
|
.comment-content h1,
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
.entry-content h2,
|
2012-07-18 20:03:38 +02:00
|
|
|
.comment-content h2,
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
.entry-content h3,
|
2012-07-18 20:03:38 +02:00
|
|
|
.comment-content h3,
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
.entry-content h4,
|
2012-07-18 20:03:38 +02:00
|
|
|
.comment-content h4,
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
.entry-content h5,
|
2012-07-18 20:03:38 +02:00
|
|
|
.comment-content h5,
|
|
|
|
.entry-content h6,
|
|
|
|
.comment-content h6 {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin: 24px 0;
|
|
|
|
margin: 1.714285714rem 0;
|
|
|
|
line-height: 1.714285714;
|
|
|
|
}
|
2012-07-18 20:03:38 +02:00
|
|
|
.entry-content h1,
|
|
|
|
.comment-content h1 {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
font-size: 21px;
|
|
|
|
font-size: 1.5rem;
|
|
|
|
line-height: 1.5;
|
|
|
|
}
|
2012-07-18 20:03:38 +02:00
|
|
|
.entry-content h2,
|
2012-11-14 23:04:25 +01:00
|
|
|
.comment-content h2,
|
|
|
|
.mu_register h2 {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
font-size: 18px;
|
|
|
|
font-size: 1.285714286rem;
|
|
|
|
line-height: 1.6;
|
|
|
|
}
|
2012-07-18 20:03:38 +02:00
|
|
|
.entry-content h3,
|
|
|
|
.comment-content h3 {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
font-size: 16px;
|
|
|
|
font-size: 1.142857143rem;
|
|
|
|
line-height: 1.846153846;
|
|
|
|
}
|
2012-07-18 20:03:38 +02:00
|
|
|
.entry-content h4,
|
|
|
|
.comment-content h4 {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
font-size: 14px;
|
|
|
|
font-size: 1rem;
|
|
|
|
line-height: 1.846153846;
|
|
|
|
}
|
2012-07-18 20:03:38 +02:00
|
|
|
.entry-content h5,
|
|
|
|
.comment-content h5 {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
font-size: 13px;
|
|
|
|
font-size: 0.928571429rem;
|
|
|
|
line-height: 1.846153846;
|
|
|
|
}
|
2012-07-18 20:03:38 +02:00
|
|
|
.entry-content h6,
|
|
|
|
.comment-content h6 {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
font-size: 12px;
|
|
|
|
font-size: 0.857142857rem;
|
|
|
|
line-height: 1.846153846;
|
|
|
|
}
|
2012-07-18 20:03:38 +02:00
|
|
|
.entry-content p,
|
2012-08-06 00:27:22 +02:00
|
|
|
.entry-summary p,
|
2012-11-14 23:04:25 +01:00
|
|
|
.comment-content p,
|
|
|
|
.mu_register p {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin: 0 0 24px;
|
|
|
|
margin: 0 0 1.714285714rem;
|
|
|
|
line-height: 1.714285714;
|
|
|
|
}
|
2013-03-01 17:56:15 +01:00
|
|
|
.entry-content a:visited,
|
|
|
|
.comment-content a:visited {
|
|
|
|
color: #9f9f9f;
|
|
|
|
}
|
2014-09-27 10:02:16 +02:00
|
|
|
.entry-content .more-link {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
.entry-content ol,
|
2012-07-18 20:03:38 +02:00
|
|
|
.comment-content ol,
|
|
|
|
.entry-content ul,
|
2012-11-14 23:04:25 +01:00
|
|
|
.comment-content ul,
|
|
|
|
.mu_register ul {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin: 0 0 24px;
|
|
|
|
margin: 0 0 1.714285714rem;
|
|
|
|
line-height: 1.714285714;
|
|
|
|
}
|
|
|
|
.entry-content ul ul,
|
2012-07-18 20:03:38 +02:00
|
|
|
.comment-content ul ul,
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
.entry-content ol ol,
|
2012-07-18 20:03:38 +02:00
|
|
|
.comment-content ol ol,
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
.entry-content ul ol,
|
2012-07-18 20:03:38 +02:00
|
|
|
.comment-content ul ol,
|
|
|
|
.entry-content ol ul,
|
|
|
|
.comment-content ol ul {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2012-07-18 20:03:38 +02:00
|
|
|
.entry-content ul,
|
2012-11-14 23:04:25 +01:00
|
|
|
.comment-content ul,
|
|
|
|
.mu_register ul {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
list-style: disc outside;
|
|
|
|
}
|
2012-07-18 20:03:38 +02:00
|
|
|
.entry-content ol,
|
|
|
|
.comment-content ol {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
list-style: decimal outside;
|
|
|
|
}
|
2012-07-18 20:03:38 +02:00
|
|
|
.entry-content li,
|
2012-11-14 23:04:25 +01:00
|
|
|
.comment-content li,
|
|
|
|
.mu_register li {
|
2012-09-04 07:08:32 +02:00
|
|
|
margin: 0 0 0 36px;
|
|
|
|
margin: 0 0 0 2.571428571rem;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
}
|
2012-07-18 20:03:38 +02:00
|
|
|
.entry-content blockquote,
|
|
|
|
.comment-content blockquote {
|
2012-09-04 07:14:46 +02:00
|
|
|
margin-bottom: 24px;
|
|
|
|
margin-bottom: 1.714285714rem;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
padding: 24px;
|
|
|
|
padding: 1.714285714rem;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
2012-09-04 07:14:46 +02:00
|
|
|
.entry-content blockquote p:last-child,
|
|
|
|
.comment-content blockquote p:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2012-07-18 20:03:38 +02:00
|
|
|
.entry-content code,
|
|
|
|
.comment-content code {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
font-family: Consolas, Monaco, Lucida Console, monospace;
|
|
|
|
font-size: 12px;
|
|
|
|
font-size: 0.857142857rem;
|
|
|
|
line-height: 2;
|
|
|
|
}
|
2012-07-18 20:03:38 +02:00
|
|
|
.entry-content pre,
|
|
|
|
.comment-content pre {
|
2012-07-25 21:03:39 +02:00
|
|
|
border: 1px solid #ededed;
|
|
|
|
color: #666;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
font-family: Consolas, Monaco, Lucida Console, monospace;
|
|
|
|
font-size: 12px;
|
|
|
|
font-size: 0.857142857rem;
|
2012-07-25 21:03:39 +02:00
|
|
|
line-height: 1.714285714;
|
|
|
|
margin: 24px 0;
|
|
|
|
margin: 1.714285714rem 0;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
overflow: auto;
|
2012-07-25 21:03:39 +02:00
|
|
|
padding: 24px;
|
|
|
|
padding: 1.714285714rem;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
}
|
2012-07-18 20:03:38 +02:00
|
|
|
.entry-content pre code,
|
|
|
|
.comment-content pre code {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.entry-content abbr,
|
2012-07-18 20:03:38 +02:00
|
|
|
.comment-content abbr,
|
|
|
|
.entry-content dfn,
|
2012-08-06 01:11:11 +02:00
|
|
|
.comment-content dfn,
|
|
|
|
.entry-content acronym,
|
2012-08-17 19:23:49 +02:00
|
|
|
.comment-content acronym {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
border-bottom: 1px dotted #666;
|
|
|
|
cursor: help;
|
|
|
|
}
|
2012-07-18 20:03:38 +02:00
|
|
|
.entry-content address,
|
|
|
|
.comment-content address {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
display: block;
|
2012-07-25 20:58:04 +02:00
|
|
|
line-height: 1.714285714;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin: 0 0 24px;
|
|
|
|
margin: 0 0 1.714285714rem;
|
|
|
|
}
|
2013-02-22 17:09:28 +01:00
|
|
|
img.alignleft,
|
|
|
|
.wp-caption.alignleft {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin: 12px 24px 12px 0;
|
|
|
|
margin: 0.857142857rem 1.714285714rem 0.857142857rem 0;
|
|
|
|
}
|
2013-02-22 17:09:28 +01:00
|
|
|
img.alignright,
|
|
|
|
.wp-caption.alignright {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin: 12px 0 12px 24px;
|
|
|
|
margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
|
|
|
|
}
|
2013-02-22 17:09:28 +01:00
|
|
|
img.aligncenter,
|
|
|
|
.wp-caption.aligncenter {
|
2013-02-15 17:45:04 +01:00
|
|
|
clear: both;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin-top: 12px;
|
|
|
|
margin-top: 0.857142857rem;
|
|
|
|
margin-bottom: 12px;
|
|
|
|
margin-bottom: 0.857142857rem;
|
|
|
|
}
|
2012-08-02 22:57:47 +02:00
|
|
|
.entry-content embed,
|
|
|
|
.entry-content iframe,
|
|
|
|
.entry-content object,
|
|
|
|
.entry-content video {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin-bottom: 24px;
|
|
|
|
margin-bottom: 1.714285714rem;
|
|
|
|
}
|
2012-07-18 20:03:38 +02:00
|
|
|
.entry-content dl,
|
|
|
|
.comment-content dl {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin: 0 24px;
|
|
|
|
margin: 0 1.714285714rem;
|
|
|
|
}
|
2012-07-18 20:03:38 +02:00
|
|
|
.entry-content dt,
|
|
|
|
.comment-content dt {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
font-weight: bold;
|
2012-07-30 22:06:26 +02:00
|
|
|
line-height: 1.714285714;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
}
|
2012-07-18 20:03:38 +02:00
|
|
|
.entry-content dd,
|
|
|
|
.comment-content dd {
|
2012-07-25 20:55:33 +02:00
|
|
|
line-height: 1.714285714;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin-bottom: 24px;
|
|
|
|
margin-bottom: 1.714285714rem;
|
|
|
|
}
|
2012-07-18 20:03:38 +02:00
|
|
|
.entry-content table,
|
|
|
|
.comment-content table {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
border-bottom: 1px solid #ededed;
|
2012-11-14 21:13:04 +01:00
|
|
|
color: #757575;
|
2012-07-25 21:15:55 +02:00
|
|
|
font-size: 12px;
|
|
|
|
font-size: 0.857142857rem;
|
|
|
|
line-height: 2;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin: 0 0 24px;
|
|
|
|
margin: 0 0 1.714285714rem;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2012-07-25 21:15:55 +02:00
|
|
|
.entry-content table caption,
|
|
|
|
.comment-content table caption {
|
|
|
|
font-size: 16px;
|
|
|
|
font-size: 1.142857143rem;
|
|
|
|
margin: 24px 0;
|
|
|
|
margin: 1.714285714rem 0;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
}
|
2012-07-18 20:03:38 +02:00
|
|
|
.entry-content td,
|
|
|
|
.comment-content td {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
border-top: 1px solid #ededed;
|
|
|
|
padding: 6px 10px 6px 0;
|
|
|
|
}
|
2012-08-02 21:12:11 +02:00
|
|
|
.site-content article {
|
2012-11-14 22:34:10 +01:00
|
|
|
border-bottom: 4px double #ededed;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin-bottom: 72px;
|
|
|
|
margin-bottom: 5.142857143rem;
|
2012-11-14 22:34:10 +01:00
|
|
|
padding-bottom: 24px;
|
|
|
|
padding-bottom: 1.714285714rem;
|
|
|
|
word-wrap: break-word;
|
|
|
|
-webkit-hyphens: auto;
|
|
|
|
-moz-hyphens: auto;
|
|
|
|
hyphens: auto;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
}
|
|
|
|
.page-links {
|
|
|
|
clear: both;
|
|
|
|
line-height: 1.714285714;
|
|
|
|
}
|
|
|
|
footer.entry-meta {
|
|
|
|
margin-top: 24px;
|
|
|
|
margin-top: 1.714285714rem;
|
|
|
|
font-size: 13px;
|
|
|
|
font-size: 0.928571429rem;
|
|
|
|
line-height: 1.846153846;
|
2012-11-14 21:13:04 +01:00
|
|
|
color: #757575;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
}
|
2012-09-05 06:33:55 +02:00
|
|
|
.single-author .entry-meta .by-author {
|
|
|
|
display: none;
|
|
|
|
}
|
2012-11-14 23:04:25 +01:00
|
|
|
.mu_register h2 {
|
|
|
|
color: #757575;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
|
|
|
|
|
2012-08-02 19:50:52 +02:00
|
|
|
/* =Archives
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
-------------------------------------------------------------- */
|
|
|
|
|
2012-08-06 23:05:02 +02:00
|
|
|
.archive-header,
|
|
|
|
.page-header {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin-bottom: 48px;
|
|
|
|
margin-bottom: 3.428571429rem;
|
|
|
|
padding-bottom: 22px;
|
|
|
|
padding-bottom: 1.571428571rem;
|
|
|
|
border-bottom: 1px solid #ededed;
|
|
|
|
}
|
2012-07-25 19:55:50 +02:00
|
|
|
.archive-meta {
|
2012-11-14 21:13:04 +01:00
|
|
|
color: #757575;
|
2012-08-01 19:38:00 +02:00
|
|
|
font-size: 12px;
|
|
|
|
font-size: 0.857142857rem;
|
|
|
|
line-height: 2;
|
2012-07-25 19:55:50 +02:00
|
|
|
margin-top: 22px;
|
|
|
|
margin-top: 1.571428571rem;
|
|
|
|
}
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
|
2014-03-19 20:00:14 +01:00
|
|
|
/* =Single audio/video attachment view
|
|
|
|
-------------------------------------------------------------- */
|
|
|
|
|
|
|
|
.attachment .entry-content .mejs-audio {
|
|
|
|
max-width: 400px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.attachment .entry-content .mejs-container {
|
|
|
|
margin-bottom: 24px;
|
|
|
|
}
|
|
|
|
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
|
2012-08-02 19:50:52 +02:00
|
|
|
/* =Single image attachment view
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
-------------------------------------------------------------- */
|
|
|
|
|
2012-09-04 06:54:24 +02:00
|
|
|
.article.attachment {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
overflow: hidden;
|
2012-09-04 06:54:24 +02:00
|
|
|
}
|
|
|
|
.image-attachment div.attachment {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
text-align: center;
|
|
|
|
}
|
2012-08-15 07:30:36 +02:00
|
|
|
.image-attachment div.attachment p {
|
|
|
|
text-align: center;
|
|
|
|
}
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
.image-attachment div.attachment img {
|
|
|
|
display: block;
|
|
|
|
height: auto;
|
|
|
|
margin: 0 auto;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
.image-attachment .entry-caption {
|
|
|
|
margin-top: 8px;
|
|
|
|
margin-top: 0.571428571rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-02 19:50:52 +02:00
|
|
|
/* =Aside post format
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
-------------------------------------------------------------- */
|
|
|
|
|
|
|
|
article.format-aside h1 {
|
|
|
|
margin-bottom: 24px;
|
|
|
|
margin-bottom: 1.714285714rem;
|
|
|
|
}
|
|
|
|
article.format-aside h1 a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: #4d525a;
|
|
|
|
}
|
|
|
|
article.format-aside h1 a:hover {
|
|
|
|
color: #2e3542;
|
|
|
|
}
|
|
|
|
article.format-aside .aside {
|
|
|
|
padding: 24px 24px 0;
|
2012-09-04 07:14:46 +02:00
|
|
|
padding: 1.714285714rem;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
background: #d2e0f9;
|
|
|
|
border-left: 22px solid #a8bfe8;
|
|
|
|
}
|
|
|
|
article.format-aside p {
|
|
|
|
font-size: 13px;
|
|
|
|
font-size: 0.928571429rem;
|
|
|
|
line-height: 1.846153846;
|
|
|
|
color: #4a5466;
|
|
|
|
}
|
2012-09-04 07:14:46 +02:00
|
|
|
article.format-aside blockquote:last-child,
|
|
|
|
article.format-aside p:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
|
|
|
|
|
2012-08-02 19:50:52 +02:00
|
|
|
/* =Post formats
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
-------------------------------------------------------------- */
|
|
|
|
|
2012-08-02 19:50:52 +02:00
|
|
|
/* Image posts */
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
article.format-image footer h1 {
|
|
|
|
font-size: 13px;
|
|
|
|
font-size: 0.928571429rem;
|
|
|
|
line-height: 1.846153846;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
article.format-image footer h2 {
|
|
|
|
font-size: 11px;
|
|
|
|
font-size: 0.785714286rem;
|
|
|
|
line-height: 2.181818182;
|
|
|
|
}
|
2012-08-30 21:27:27 +02:00
|
|
|
article.format-image footer a h2 {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
|
2012-08-02 19:50:52 +02:00
|
|
|
/* Link posts */
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
article.format-link header {
|
|
|
|
padding: 0 10px;
|
|
|
|
padding: 0 0.714285714rem;
|
|
|
|
float: right;
|
|
|
|
font-size: 11px;
|
|
|
|
font-size: 0.785714286rem;
|
|
|
|
line-height: 2.181818182;
|
|
|
|
font-weight: bold;
|
|
|
|
font-style: italic;
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: #848484;
|
|
|
|
background-color: #ebebeb;
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
article.format-link .entry-content {
|
|
|
|
max-width: 80%;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
article.format-link .entry-content a {
|
|
|
|
font-size: 22px;
|
|
|
|
font-size: 1.571428571rem;
|
|
|
|
line-height: 1.090909091;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2012-08-02 19:50:52 +02:00
|
|
|
/* Quote posts */
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
article.format-quote .entry-content p {
|
|
|
|
margin: 0;
|
|
|
|
padding-bottom: 24px;
|
|
|
|
padding-bottom: 1.714285714rem;
|
|
|
|
}
|
|
|
|
article.format-quote .entry-content blockquote {
|
|
|
|
display: block;
|
|
|
|
padding: 24px 24px 0;
|
|
|
|
padding: 1.714285714rem 1.714285714rem 0;
|
|
|
|
font-size: 15px;
|
|
|
|
font-size: 1.071428571rem;
|
|
|
|
line-height: 1.6;
|
|
|
|
font-style: normal;
|
|
|
|
color: #6a6a6a;
|
|
|
|
background: #efefef;
|
|
|
|
}
|
|
|
|
|
2012-09-04 07:00:19 +02:00
|
|
|
/* Status posts */
|
2012-09-20 23:51:48 +02:00
|
|
|
.format-status .entry-header {
|
2012-09-20 21:42:19 +02:00
|
|
|
margin-bottom: 24px;
|
|
|
|
margin-bottom: 1.714285714rem;
|
|
|
|
}
|
2012-09-20 23:51:48 +02:00
|
|
|
.format-status .entry-header header {
|
2012-09-20 21:42:19 +02:00
|
|
|
display: inline-block;
|
|
|
|
}
|
2012-09-20 23:51:48 +02:00
|
|
|
.format-status .entry-header h1 {
|
2012-09-20 21:42:19 +02:00
|
|
|
font-size: 15px;
|
|
|
|
font-size: 1.071428571rem;
|
|
|
|
font-weight: normal;
|
|
|
|
line-height: 1.6;
|
|
|
|
margin: 0;
|
|
|
|
}
|
2012-09-20 23:51:48 +02:00
|
|
|
.format-status .entry-header h2 {
|
2012-09-20 21:42:19 +02:00
|
|
|
font-size: 12px;
|
|
|
|
font-size: 0.857142857rem;
|
|
|
|
font-weight: normal;
|
|
|
|
line-height: 2;
|
|
|
|
margin: 0;
|
|
|
|
}
|
2012-09-20 23:51:48 +02:00
|
|
|
.format-status .entry-header header a {
|
2012-11-14 21:13:04 +01:00
|
|
|
color: #757575;
|
2012-09-20 21:42:19 +02:00
|
|
|
}
|
2012-09-20 23:51:48 +02:00
|
|
|
.format-status .entry-header header a:hover {
|
2012-09-20 21:42:19 +02:00
|
|
|
color: #21759b;
|
|
|
|
}
|
2012-09-20 23:51:48 +02:00
|
|
|
.format-status .entry-header img {
|
2012-09-20 21:42:19 +02:00
|
|
|
float: left;
|
|
|
|
margin-right: 21px;
|
|
|
|
margin-right: 1.5rem;
|
2012-09-04 07:00:19 +02:00
|
|
|
}
|
|
|
|
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
|
2012-08-02 19:50:52 +02:00
|
|
|
/* =Comments
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
-------------------------------------------------------------- */
|
|
|
|
|
2012-08-02 21:12:11 +02:00
|
|
|
.comments-title {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin-bottom: 48px;
|
|
|
|
margin-bottom: 3.428571429rem;
|
|
|
|
font-size: 16px;
|
|
|
|
font-size: 1.142857143rem;
|
|
|
|
line-height: 1.5;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
2012-08-02 21:12:11 +02:00
|
|
|
.comments-area article {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin: 24px 0;
|
|
|
|
margin: 1.714285714rem 0;
|
|
|
|
}
|
2012-08-02 21:12:11 +02:00
|
|
|
.comments-area article header {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin: 0 0 48px;
|
|
|
|
margin: 0 0 3.428571429rem;
|
2012-07-25 20:44:37 +02:00
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
}
|
2012-08-02 21:12:11 +02:00
|
|
|
.comments-area article header img {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
float: left;
|
|
|
|
padding: 0;
|
|
|
|
line-height: 0;
|
|
|
|
}
|
2012-08-02 21:12:11 +02:00
|
|
|
.comments-area article header cite,
|
|
|
|
.comments-area article header time {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
display: block;
|
|
|
|
margin-left: 85px;
|
|
|
|
margin-left: 6.071428571rem;
|
|
|
|
}
|
2012-08-02 21:12:11 +02:00
|
|
|
.comments-area article header cite {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
font-style: normal;
|
|
|
|
font-size: 15px;
|
|
|
|
font-size: 1.071428571rem;
|
2012-08-08 21:10:22 +02:00
|
|
|
line-height: 1.42857143;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
}
|
2013-03-15 18:54:36 +01:00
|
|
|
.comments-area cite b {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
2012-08-02 21:12:11 +02:00
|
|
|
.comments-area article header time {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
line-height: 1.714285714;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 12px;
|
|
|
|
font-size: 0.857142857rem;
|
|
|
|
color: #5e5e5e;
|
|
|
|
}
|
2012-08-02 21:12:11 +02:00
|
|
|
.comments-area article header a {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
text-decoration: none;
|
|
|
|
color: #5e5e5e;
|
|
|
|
}
|
2012-08-02 21:12:11 +02:00
|
|
|
.comments-area article header a:hover {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
color: #21759b;
|
|
|
|
}
|
2012-08-02 21:12:11 +02:00
|
|
|
.comments-area article header cite a {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
color: #444;
|
|
|
|
}
|
2012-08-02 21:12:11 +02:00
|
|
|
.comments-area article header cite a:hover {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2012-08-02 21:12:11 +02:00
|
|
|
.comments-area article header h4 {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
padding: 6px 12px;
|
|
|
|
padding: 0.428571429rem 0.857142857rem;
|
|
|
|
font-size: 12px;
|
|
|
|
font-size: 0.857142857rem;
|
|
|
|
font-weight: normal;
|
|
|
|
color: #fff;
|
|
|
|
background-color: #0088d0;
|
|
|
|
background-repeat: repeat-x;
|
|
|
|
background-image: -moz-linear-gradient(top, #009cee, #0088d0);
|
|
|
|
background-image: -ms-linear-gradient(top, #009cee, #0088d0);
|
|
|
|
background-image: -webkit-linear-gradient(top, #009cee, #0088d0);
|
|
|
|
background-image: -o-linear-gradient(top, #009cee, #0088d0);
|
2019-04-06 18:17:50 +02:00
|
|
|
background-image: linear-gradient(to bottom, #009cee, #0088d0);
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
border-radius: 3px;
|
|
|
|
border: 1px solid #007cbd;
|
|
|
|
}
|
2013-03-15 18:54:36 +01:00
|
|
|
.comments-area .bypostauthor cite span {
|
2012-08-08 21:10:22 +02:00
|
|
|
position: absolute;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin-left: 5px;
|
|
|
|
margin-left: 0.357142857rem;
|
|
|
|
padding: 2px 5px;
|
|
|
|
padding: 0.142857143rem 0.357142857rem;
|
|
|
|
font-size: 10px;
|
|
|
|
font-size: 0.714285714rem;
|
|
|
|
}
|
2013-03-15 18:54:36 +01:00
|
|
|
.comments-area .bypostauthor cite b {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2012-11-16 22:22:17 +01:00
|
|
|
a.comment-reply-link,
|
|
|
|
a.comment-edit-link {
|
|
|
|
color: #686868;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
font-size: 13px;
|
|
|
|
font-size: 0.928571429rem;
|
|
|
|
line-height: 1.846153846;
|
|
|
|
}
|
2012-11-16 22:22:17 +01:00
|
|
|
a.comment-reply-link:hover,
|
|
|
|
a.comment-edit-link:hover {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
color: #21759b;
|
|
|
|
}
|
|
|
|
.commentlist .pingback {
|
2012-08-06 22:48:47 +02:00
|
|
|
line-height: 1.714285714;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin-bottom: 24px;
|
|
|
|
margin-bottom: 1.714285714rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Comment form */
|
|
|
|
#respond {
|
|
|
|
margin-top: 48px;
|
|
|
|
margin-top: 3.428571429rem;
|
|
|
|
}
|
|
|
|
#respond h3#reply-title {
|
|
|
|
font-size: 16px;
|
|
|
|
font-size: 1.142857143rem;
|
|
|
|
line-height: 1.5;
|
|
|
|
}
|
|
|
|
#respond h3#reply-title #cancel-comment-reply-link {
|
|
|
|
margin-left: 10px;
|
|
|
|
margin-left: 0.714285714rem;
|
|
|
|
font-weight: normal;
|
|
|
|
font-size: 12px;
|
|
|
|
font-size: 0.857142857rem;
|
|
|
|
}
|
|
|
|
#respond form {
|
|
|
|
margin: 24px 0;
|
|
|
|
margin: 1.714285714rem 0;
|
|
|
|
}
|
|
|
|
#respond form p {
|
|
|
|
margin: 11px 0;
|
|
|
|
margin: 0.785714286rem 0;
|
|
|
|
}
|
|
|
|
#respond form p.logged-in-as {
|
|
|
|
margin-bottom: 24px;
|
|
|
|
margin-bottom: 1.714285714rem;
|
|
|
|
}
|
|
|
|
#respond form label {
|
|
|
|
display: block;
|
|
|
|
line-height: 1.714285714;
|
|
|
|
}
|
|
|
|
#respond form input[type="text"],
|
2012-08-06 02:30:52 +02:00
|
|
|
#respond form textarea {
|
2012-09-18 23:36:31 +02:00
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
font-size: 12px;
|
|
|
|
font-size: 0.857142857rem;
|
|
|
|
line-height: 1.714285714;
|
|
|
|
padding: 10px;
|
|
|
|
padding: 0.714285714rem;
|
2012-09-18 23:36:31 +02:00
|
|
|
width: 100%;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
}
|
|
|
|
#respond form p.form-allowed-tags {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 12px;
|
|
|
|
font-size: 0.857142857rem;
|
|
|
|
line-height: 2;
|
|
|
|
color: #5e5e5e;
|
|
|
|
}
|
2018-05-03 00:00:49 +02:00
|
|
|
#respond #wp-comment-cookies-consent {
|
|
|
|
margin: 0 10px 0 0;
|
|
|
|
}
|
|
|
|
#respond .comment-form-cookies-consent label {
|
|
|
|
display: inline;
|
|
|
|
}
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
.required {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-09-18 19:28:36 +02:00
|
|
|
/* =Front page template
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
-------------------------------------------------------------- */
|
|
|
|
|
2012-08-20 23:44:38 +02:00
|
|
|
.entry-page-image {
|
|
|
|
margin-bottom: 14px;
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
2012-09-18 19:28:36 +02:00
|
|
|
.template-front-page .site-content article {
|
2012-08-01 20:52:20 +02:00
|
|
|
border: 0;
|
|
|
|
margin-bottom: 0;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
}
|
2012-09-18 19:28:36 +02:00
|
|
|
.template-front-page .widget-area {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
clear: both;
|
|
|
|
float: none;
|
|
|
|
width: auto;
|
|
|
|
padding-top: 24px;
|
|
|
|
padding-top: 1.714285714rem;
|
|
|
|
border-top: 1px solid #ededed;
|
|
|
|
}
|
2012-09-18 19:28:36 +02:00
|
|
|
.template-front-page .widget-area .widget li {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin: 8px 0 0;
|
|
|
|
margin: 0.571428571rem 0 0;
|
|
|
|
font-size: 13px;
|
|
|
|
font-size: 0.928571429rem;
|
|
|
|
line-height: 1.714285714;
|
|
|
|
list-style-type: square;
|
|
|
|
list-style-position: inside;
|
|
|
|
}
|
2012-09-18 19:28:36 +02:00
|
|
|
.template-front-page .widget-area .widget li a {
|
2012-11-14 21:13:04 +01:00
|
|
|
color: #757575;
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
}
|
2012-09-18 19:28:36 +02:00
|
|
|
.template-front-page .widget-area .widget li a:hover {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
color: #21759b;
|
|
|
|
}
|
2012-09-18 19:28:36 +02:00
|
|
|
.template-front-page .widget-area .widget_text img {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
float: left;
|
|
|
|
margin: 8px 24px 8px 0;
|
|
|
|
margin: 0.571428571rem 1.714285714rem 0.571428571rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-02 19:50:52 +02:00
|
|
|
/* =Widgets
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
-------------------------------------------------------------- */
|
|
|
|
|
2020-05-15 18:31:11 +02:00
|
|
|
.widget select {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
2012-08-02 21:12:11 +02:00
|
|
|
.widget-area .widget ul ul {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
margin-left: 12px;
|
|
|
|
margin-left: 0.857142857rem;
|
|
|
|
}
|
2012-08-06 00:20:35 +02:00
|
|
|
.widget_rss li {
|
|
|
|
margin: 12px 0;
|
|
|
|
margin: 0.857142857rem 0;
|
|
|
|
}
|
|
|
|
.widget_recent_entries .post-date,
|
|
|
|
.widget_rss .rss-date {
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
color: #aaa;
|
|
|
|
font-size: 11px;
|
|
|
|
font-size: 0.785714286rem;
|
|
|
|
margin-left: 12px;
|
|
|
|
margin-left: 0.857142857rem;
|
|
|
|
}
|
2020-03-02 17:55:08 +01:00
|
|
|
.wp-calendar-nav,
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
#wp-calendar {
|
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
|
|
|
font-size: 13px;
|
|
|
|
font-size: 0.928571429rem;
|
|
|
|
line-height: 1.846153846;
|
|
|
|
color: #686868;
|
|
|
|
}
|
|
|
|
#wp-calendar th,
|
|
|
|
#wp-calendar td,
|
|
|
|
#wp-calendar caption {
|
|
|
|
text-align: left;
|
|
|
|
}
|
2020-03-02 17:55:08 +01:00
|
|
|
.wp-calendar-nav {
|
|
|
|
display: table;
|
|
|
|
}
|
|
|
|
.wp-calendar-nav span {
|
|
|
|
display: table-cell;
|
|
|
|
}
|
|
|
|
.wp-calendar-nav-next,
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
|
|
|
#wp-calendar #next {
|
|
|
|
padding-right: 24px;
|
|
|
|
padding-right: 1.714285714rem;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
.widget_search label {
|
|
|
|
display: block;
|
|
|
|
font-size: 13px;
|
|
|
|
font-size: 0.928571429rem;
|
|
|
|
line-height: 1.846153846;
|
|
|
|
}
|
2012-08-06 01:48:13 +02:00
|
|
|
.widget_twitter li {
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
.widget_twitter .timesince {
|
|
|
|
display: block;
|
|
|
|
text-align: right;
|
|
|
|
}
|
2017-10-05 01:53:47 +02:00
|
|
|
.tagcloud ul {
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tagcloud ul li {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget-area .widget.widget_tag_cloud li {
|
|
|
|
line-height: 1;
|
|
|
|
}
|
|
|
|
.template-front-page .widget-area .widget.widget_tag_cloud li {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2012-08-01 17:47:02 +02:00
|
|
|
|
2017-10-25 04:17:47 +02:00
|
|
|
.widget-area .gallery-columns-2.gallery-size-full .gallery-icon img,
|
|
|
|
.widget-area .gallery-columns-3.gallery-size-full .gallery-icon img,
|
|
|
|
.widget-area .gallery-columns-4.gallery-size-full .gallery-icon img,
|
|
|
|
.widget-area .gallery-columns-5.gallery-size-full .gallery-icon img,
|
|
|
|
.widget-area .gallery-columns-6 .gallery-icon img,
|
|
|
|
.widget-area .gallery-columns-7 .gallery-icon img,
|
|
|
|
.widget-area .gallery-columns-8 .gallery-icon img,
|
|
|
|
.widget-area .gallery-columns-9 .gallery-icon img {
|
|
|
|
height: auto;
|
|
|
|
max-width: 80%;
|
|
|
|
}
|
|
|
|
|
2012-08-06 01:41:59 +02:00
|
|
|
/* =Plugins
|
|
|
|
----------------------------------------------- */
|
|
|
|
|
|
|
|
img#wpstats {
|
|
|
|
display: block;
|
|
|
|
margin: 0 auto 24px;
|
2012-08-06 22:48:47 +02:00
|
|
|
margin: 0 auto 1.714285714rem;
|
2012-08-06 01:41:59 +02:00
|
|
|
}
|
|
|
|
|
2017-10-05 02:02:48 +02:00
|
|
|
|
2012-08-02 19:50:52 +02:00
|
|
|
/* =Media queries
|
|
|
|
-------------------------------------------------------------- */
|
|
|
|
|
2013-11-10 00:20:09 +01:00
|
|
|
/* Does the same thing as <meta name="viewport" content="width=device-width">,
|
2013-12-06 03:23:10 +01:00
|
|
|
* but in the future W3C standard way. -ms- prefix is required for IE10+ to
|
|
|
|
* render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
|
2014-09-29 15:28:16 +02:00
|
|
|
* the meta tag. See https://core.trac.wordpress.org/ticket/25888.
|
2013-11-10 00:20:09 +01:00
|
|
|
*/
|
|
|
|
@-ms-viewport {
|
|
|
|
width: device-width;
|
|
|
|
}
|
|
|
|
@viewport {
|
|
|
|
width: device-width;
|
|
|
|
}
|
|
|
|
|
2012-08-02 19:50:52 +02:00
|
|
|
/* Minimum width of 600 pixels. */
|
|
|
|
@media screen and (min-width: 600px) {
|
2012-09-21 18:39:38 +02:00
|
|
|
.author-avatar {
|
2012-08-02 19:50:52 +02:00
|
|
|
float: left;
|
|
|
|
margin-top: 8px;
|
|
|
|
margin-top: 0.571428571rem;
|
|
|
|
}
|
2012-09-21 18:39:38 +02:00
|
|
|
.author-description {
|
2012-08-02 19:50:52 +02:00
|
|
|
float: right;
|
|
|
|
width: 80%;
|
|
|
|
}
|
2012-08-02 21:12:11 +02:00
|
|
|
.site {
|
2012-08-02 19:50:52 +02:00
|
|
|
margin: 0 auto;
|
|
|
|
max-width: 960px;
|
|
|
|
max-width: 68.571428571rem;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2012-08-02 21:12:11 +02:00
|
|
|
.site-content {
|
2012-08-02 19:50:52 +02:00
|
|
|
float: left;
|
|
|
|
width: 65.104166667%;
|
|
|
|
}
|
2012-09-18 19:28:36 +02:00
|
|
|
body.template-front-page .site-content,
|
2013-10-07 15:19:10 +02:00
|
|
|
body.attachment .site-content,
|
2012-08-02 21:12:11 +02:00
|
|
|
body.full-width .site-content {
|
2012-08-02 19:50:52 +02:00
|
|
|
width: 100%;
|
|
|
|
}
|
2012-08-02 21:12:11 +02:00
|
|
|
.widget-area {
|
2012-08-02 19:50:52 +02:00
|
|
|
float: right;
|
|
|
|
width: 26.041666667%;
|
|
|
|
}
|
2012-08-02 20:28:10 +02:00
|
|
|
.site-header h1,
|
|
|
|
.site-header h2 {
|
2012-08-02 19:50:52 +02:00
|
|
|
text-align: left;
|
|
|
|
}
|
2012-08-02 20:28:10 +02:00
|
|
|
.site-header h1 {
|
2012-08-02 19:50:52 +02:00
|
|
|
font-size: 26px;
|
|
|
|
font-size: 1.857142857rem;
|
|
|
|
line-height: 1.846153846;
|
2012-11-02 17:48:11 +01:00
|
|
|
margin-bottom: 0;
|
2012-08-02 19:50:52 +02:00
|
|
|
}
|
2012-08-24 23:07:19 +02:00
|
|
|
.main-navigation ul.nav-menu,
|
2012-08-26 01:27:04 +02:00
|
|
|
.main-navigation div.nav-menu > ul {
|
2012-08-20 20:35:33 +02:00
|
|
|
border-bottom: 1px solid #ededed;
|
|
|
|
border-top: 1px solid #ededed;
|
|
|
|
display: inline-block !important;
|
|
|
|
text-align: left;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.main-navigation ul {
|
|
|
|
margin: 0;
|
|
|
|
text-indent: 0;
|
|
|
|
}
|
|
|
|
.main-navigation li a,
|
|
|
|
.main-navigation li {
|
|
|
|
display: inline-block;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
.main-navigation li a {
|
2012-08-24 23:07:19 +02:00
|
|
|
border-bottom: 0;
|
2012-08-20 20:35:33 +02:00
|
|
|
color: #6a6a6a;
|
2012-08-24 23:07:19 +02:00
|
|
|
line-height: 3.692307692;
|
2012-08-20 20:35:33 +02:00
|
|
|
text-transform: uppercase;
|
2012-10-25 18:26:33 +02:00
|
|
|
white-space: nowrap;
|
2012-08-20 20:35:33 +02:00
|
|
|
}
|
2014-03-19 06:29:16 +01:00
|
|
|
.main-navigation li a:hover,
|
|
|
|
.main-navigation li a:focus {
|
2012-08-20 20:35:33 +02:00
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
.main-navigation li {
|
|
|
|
margin: 0 40px 0 0;
|
|
|
|
margin: 0 2.857142857rem 0 0;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.main-navigation li ul {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 100%;
|
|
|
|
z-index: 1;
|
2014-03-19 06:29:16 +01:00
|
|
|
height: 1px;
|
|
|
|
width: 1px;
|
|
|
|
overflow: hidden;
|
|
|
|
clip: rect(1px, 1px, 1px, 1px);
|
2012-08-20 20:35:33 +02:00
|
|
|
}
|
|
|
|
.main-navigation li ul ul {
|
|
|
|
top: 0;
|
|
|
|
left: 100%;
|
|
|
|
}
|
2014-03-19 06:29:16 +01:00
|
|
|
.main-navigation ul li:hover > ul,
|
|
|
|
.main-navigation ul li:focus > ul,
|
|
|
|
.main-navigation .focus > ul {
|
2012-08-20 20:35:33 +02:00
|
|
|
border-left: 0;
|
2014-03-19 06:29:16 +01:00
|
|
|
clip: inherit;
|
|
|
|
overflow: inherit;
|
|
|
|
height: inherit;
|
|
|
|
width: inherit;
|
2012-08-20 20:35:33 +02:00
|
|
|
}
|
|
|
|
.main-navigation li ul li a {
|
|
|
|
background: #efefef;
|
|
|
|
border-bottom: 1px solid #ededed;
|
|
|
|
display: block;
|
|
|
|
font-size: 11px;
|
|
|
|
font-size: 0.785714286rem;
|
|
|
|
line-height: 2.181818182;
|
|
|
|
padding: 8px 10px;
|
|
|
|
padding: 0.571428571rem 0.714285714rem;
|
2012-09-25 01:46:04 +02:00
|
|
|
width: 180px;
|
|
|
|
width: 12.85714286rem;
|
2012-10-25 20:42:21 +02:00
|
|
|
white-space: normal;
|
2012-08-20 20:35:33 +02:00
|
|
|
}
|
2014-03-19 06:29:16 +01:00
|
|
|
.main-navigation li ul li a:hover,
|
|
|
|
.main-navigation li ul li a:focus {
|
2012-08-20 20:35:33 +02:00
|
|
|
background: #e3e3e3;
|
|
|
|
color: #444;
|
|
|
|
}
|
|
|
|
.main-navigation .current-menu-item > a,
|
|
|
|
.main-navigation .current-menu-ancestor > a,
|
|
|
|
.main-navigation .current_page_item > a,
|
|
|
|
.main-navigation .current_page_ancestor > a {
|
|
|
|
color: #636363;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.menu-toggle {
|
|
|
|
display: none;
|
|
|
|
}
|
2012-08-02 20:28:10 +02:00
|
|
|
.entry-header .entry-title {
|
2012-08-02 19:50:52 +02:00
|
|
|
font-size: 22px;
|
|
|
|
font-size: 1.571428571rem;
|
|
|
|
}
|
|
|
|
#respond form input[type="text"] {
|
|
|
|
width: 46.333333333%;
|
|
|
|
}
|
|
|
|
#respond form textarea.blog-textarea {
|
|
|
|
width: 79.666666667%;
|
|
|
|
}
|
2012-09-18 19:28:36 +02:00
|
|
|
.template-front-page .site-content,
|
|
|
|
.template-front-page article {
|
2012-08-02 19:50:52 +02:00
|
|
|
overflow: hidden;
|
|
|
|
}
|
2012-09-18 19:28:36 +02:00
|
|
|
.template-front-page.has-post-thumbnail article {
|
2012-08-02 19:50:52 +02:00
|
|
|
float: left;
|
|
|
|
width: 47.916666667%;
|
|
|
|
}
|
|
|
|
.entry-page-image {
|
|
|
|
float: right;
|
2012-08-20 23:44:38 +02:00
|
|
|
margin-bottom: 0;
|
2012-08-02 19:50:52 +02:00
|
|
|
width: 47.916666667%;
|
|
|
|
}
|
2012-09-18 19:28:36 +02:00
|
|
|
.template-front-page .widget-area .widget,
|
2012-09-24 18:57:42 +02:00
|
|
|
.template-front-page.two-sidebars .widget-area .front-widgets {
|
2012-08-02 19:50:52 +02:00
|
|
|
float: left;
|
|
|
|
width: 51.875%;
|
|
|
|
margin-bottom: 24px;
|
|
|
|
margin-bottom: 1.714285714rem;
|
|
|
|
}
|
2012-09-18 19:28:36 +02:00
|
|
|
.template-front-page .widget-area .widget:nth-child(odd) {
|
2012-08-20 20:45:00 +02:00
|
|
|
clear: right;
|
|
|
|
}
|
2012-09-18 19:28:36 +02:00
|
|
|
.template-front-page .widget-area .widget:nth-child(even),
|
2012-09-24 18:57:42 +02:00
|
|
|
.template-front-page.two-sidebars .widget-area .front-widgets + .front-widgets {
|
2012-08-02 19:50:52 +02:00
|
|
|
float: right;
|
|
|
|
width: 39.0625%;
|
|
|
|
margin: 0 0 24px;
|
|
|
|
margin: 0 0 1.714285714rem;
|
|
|
|
}
|
2012-09-24 18:57:42 +02:00
|
|
|
.template-front-page.two-sidebars .widget,
|
|
|
|
.template-front-page.two-sidebars .widget:nth-child(even) {
|
2012-08-20 20:45:00 +02:00
|
|
|
float: none;
|
|
|
|
width: auto;
|
|
|
|
}
|
2012-11-28 18:43:46 +01:00
|
|
|
.commentlist .children {
|
|
|
|
margin-left: 48px;
|
|
|
|
margin-left: 3.428571429rem;
|
|
|
|
}
|
2012-08-02 19:50:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Minimum width of 960 pixels. */
|
|
|
|
@media screen and (min-width: 960px) {
|
|
|
|
body {
|
|
|
|
background-color: #e6e6e6;
|
|
|
|
}
|
2012-08-02 21:12:11 +02:00
|
|
|
body .site {
|
2012-08-02 19:50:52 +02:00
|
|
|
padding: 0 40px;
|
|
|
|
padding: 0 2.857142857rem;
|
|
|
|
margin-top: 48px;
|
|
|
|
margin-top: 3.428571429rem;
|
|
|
|
margin-bottom: 48px;
|
|
|
|
margin-bottom: 3.428571429rem;
|
|
|
|
box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
|
|
|
|
}
|
|
|
|
body.custom-background-empty {
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
2012-08-02 21:12:11 +02:00
|
|
|
body.custom-background-empty .site,
|
|
|
|
body.custom-background-white .site {
|
2012-08-02 19:50:52 +02:00
|
|
|
padding: 0;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-01 17:47:02 +02:00
|
|
|
/* =Print
|
|
|
|
----------------------------------------------- */
|
|
|
|
|
|
|
|
@media print {
|
|
|
|
body {
|
|
|
|
background: none !important;
|
2012-12-07 02:38:57 +01:00
|
|
|
color: #000;
|
2012-08-01 17:47:02 +02:00
|
|
|
font-size: 10pt;
|
|
|
|
}
|
|
|
|
footer a[rel=bookmark]:link:after,
|
|
|
|
footer a[rel=bookmark]:visited:after {
|
|
|
|
content: " [" attr(href) "] "; /* Show URLs */
|
|
|
|
}
|
2012-08-05 22:21:07 +02:00
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2012-08-01 17:47:02 +02:00
|
|
|
.entry-content img,
|
|
|
|
.comment-content img,
|
2012-09-21 18:39:38 +02:00
|
|
|
.author-avatar img,
|
2012-08-01 17:47:02 +02:00
|
|
|
img.wp-post-image {
|
|
|
|
border-radius: 0;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
2012-08-02 21:12:11 +02:00
|
|
|
.site {
|
2012-08-01 17:47:02 +02:00
|
|
|
clear: both !important;
|
|
|
|
display: block !important;
|
|
|
|
float: none !important;
|
|
|
|
max-width: 100%;
|
|
|
|
position: relative !important;
|
|
|
|
}
|
|
|
|
.site-header {
|
|
|
|
margin-bottom: 72px;
|
|
|
|
margin-bottom: 5.142857143rem;
|
|
|
|
text-align: left;
|
|
|
|
}
|
2012-08-02 20:28:10 +02:00
|
|
|
.site-header h1 {
|
2012-08-01 17:47:02 +02:00
|
|
|
font-size: 21pt;
|
|
|
|
line-height: 1;
|
|
|
|
text-align: left;
|
|
|
|
}
|
2012-08-02 20:28:10 +02:00
|
|
|
.site-header h2 {
|
2012-12-07 02:38:57 +01:00
|
|
|
color: #000;
|
2012-08-01 17:47:02 +02:00
|
|
|
font-size: 10pt;
|
|
|
|
text-align: left;
|
|
|
|
}
|
2012-12-07 02:38:57 +01:00
|
|
|
.site-header h1 a,
|
|
|
|
.site-header h2 a {
|
|
|
|
color: #000;
|
|
|
|
}
|
2012-09-21 18:39:38 +02:00
|
|
|
.author-avatar,
|
2012-08-02 23:11:11 +02:00
|
|
|
#colophon,
|
|
|
|
#respond,
|
|
|
|
.commentlist .comment-edit-link,
|
|
|
|
.commentlist .reply,
|
|
|
|
.entry-header .comments-link,
|
|
|
|
.entry-meta .edit-link a,
|
|
|
|
.page-link,
|
|
|
|
.site-content nav,
|
|
|
|
.widget-area,
|
|
|
|
img.header-image,
|
2012-08-24 23:07:19 +02:00
|
|
|
.main-navigation {
|
2012-08-01 17:47:02 +02:00
|
|
|
display: none;
|
|
|
|
}
|
2012-08-02 21:12:11 +02:00
|
|
|
.wrapper {
|
2012-08-01 17:47:02 +02:00
|
|
|
border-top: none;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
2012-08-02 21:12:11 +02:00
|
|
|
.site-content {
|
2012-08-01 17:47:02 +02:00
|
|
|
margin: 0;
|
|
|
|
width: auto;
|
|
|
|
}
|
2014-03-17 22:56:13 +01:00
|
|
|
|
2012-08-02 20:28:10 +02:00
|
|
|
.entry-header .entry-title,
|
2014-03-17 22:56:13 +01:00
|
|
|
.entry-title {
|
2012-08-01 17:47:02 +02:00
|
|
|
font-size: 21pt;
|
|
|
|
}
|
2012-08-05 22:21:07 +02:00
|
|
|
footer.entry-meta,
|
|
|
|
footer.entry-meta a {
|
|
|
|
color: #444;
|
2012-08-01 17:47:02 +02:00
|
|
|
font-size: 10pt;
|
|
|
|
}
|
2012-09-21 18:39:38 +02:00
|
|
|
.author-description {
|
2012-08-01 17:47:02 +02:00
|
|
|
float: none;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Comments */
|
|
|
|
.commentlist > li.comment {
|
|
|
|
background: none;
|
|
|
|
position: relative;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
.commentlist .avatar {
|
|
|
|
height: 39px;
|
|
|
|
left: 2.2em;
|
|
|
|
top: 2.2em;
|
|
|
|
width: 39px;
|
|
|
|
}
|
2012-08-02 21:12:11 +02:00
|
|
|
.comments-area article header cite,
|
|
|
|
.comments-area article header time {
|
2012-08-01 17:47:02 +02:00
|
|
|
margin-left: 50px;
|
|
|
|
margin-left: 3.57142857rem;
|
|
|
|
}
|
2015-07-27 21:50:25 +02:00
|
|
|
}
|