2013-09-03 01:03:09 +02:00
|
|
|
/*
|
|
|
|
Theme Name: Twenty Fourteen
|
|
|
|
Description: Used to style the TinyMCE editor.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Table of Contents:
|
|
|
|
*
|
|
|
|
* 1.0 - Body
|
|
|
|
* 2.0 - Headings
|
|
|
|
* 3.0 - Text Elements
|
|
|
|
* 4.0 - Links
|
|
|
|
* 5.0 - Alignment
|
|
|
|
* 6.0 - Tables
|
|
|
|
* 7.0 - Images
|
2014-03-20 05:27:16 +01:00
|
|
|
* 8.0 - Galleries
|
|
|
|
* 9.0 - Audio/Video
|
|
|
|
* 10.0 - RTL
|
2013-09-03 01:03:09 +02:00
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 1.0 Body
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
html .mceContentBody {
|
|
|
|
font-size: 100%;
|
|
|
|
max-width: 474px;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
color: #2b2b2b;
|
|
|
|
font-family: Lato, sans-serif;
|
2013-12-03 18:30:11 +01:00
|
|
|
font-weight: 400;
|
2013-09-03 01:03:09 +02:00
|
|
|
line-height: 1.5;
|
|
|
|
vertical-align: baseline;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 2.0 Headings
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
|
|
|
clear: both;
|
|
|
|
font-weight: 700;
|
2013-12-03 18:30:11 +01:00
|
|
|
margin: 36px 0 12px;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
2013-12-03 18:30:11 +01:00
|
|
|
font-size: 26px;
|
|
|
|
line-height: 1.3846153846;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
2013-12-03 18:30:11 +01:00
|
|
|
font-size: 24px;
|
|
|
|
line-height: 1;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
2013-12-03 18:30:11 +01:00
|
|
|
font-size: 22px;
|
|
|
|
line-height: 1.0909090909;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
2013-12-03 18:30:11 +01:00
|
|
|
font-size: 20px;
|
|
|
|
line-height: 1.2;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
h5 {
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 1.3333333333;
|
|
|
|
}
|
|
|
|
|
|
|
|
h6 {
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 1.5;
|
|
|
|
}
|
|
|
|
|
2013-12-03 18:30:11 +01:00
|
|
|
h1:first-child,
|
|
|
|
h2:first-child,
|
|
|
|
h3:first-child,
|
|
|
|
h4:first-child,
|
|
|
|
h5:first-child,
|
|
|
|
h6:first-child {
|
|
|
|
margin-top: 0;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 3.0 Text Elements
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2013-12-03 18:30:11 +01:00
|
|
|
address {
|
|
|
|
font-style: italic;
|
|
|
|
margin-bottom: 24px;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
2013-12-03 18:30:11 +01:00
|
|
|
abbr[title] {
|
|
|
|
border-bottom: 1px dotted #2b2b2b;
|
|
|
|
cursor: help;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
2013-12-03 18:30:11 +01:00
|
|
|
b,
|
|
|
|
strong {
|
|
|
|
font-weight: 700;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
2013-12-03 18:30:11 +01:00
|
|
|
cite {
|
|
|
|
border: 0;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
2013-12-03 18:30:11 +01:00
|
|
|
cite,
|
|
|
|
dfn,
|
|
|
|
em,
|
|
|
|
i {
|
|
|
|
font-style: italic;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
2013-12-03 18:30:11 +01:00
|
|
|
mark,
|
|
|
|
ins {
|
|
|
|
background: #fff9c0;
|
2013-12-04 22:47:11 +01:00
|
|
|
border: 0;
|
|
|
|
color: inherit;
|
2013-12-03 18:30:11 +01:00
|
|
|
text-decoration: none;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
2013-12-03 18:30:11 +01:00
|
|
|
p {
|
2013-09-03 01:03:09 +02:00
|
|
|
margin: 0 0 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
code,
|
|
|
|
kbd,
|
|
|
|
tt,
|
|
|
|
var,
|
2013-12-03 18:30:11 +01:00
|
|
|
samp,
|
2013-09-03 01:03:09 +02:00
|
|
|
pre {
|
2013-12-03 18:30:11 +01:00
|
|
|
font-family: monospace, serif;
|
2013-09-03 01:03:09 +02:00
|
|
|
font-size: 15px;
|
|
|
|
line-height: 1.6;
|
2013-12-03 18:30:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pre {
|
|
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
2013-09-03 01:03:09 +02:00
|
|
|
margin-bottom: 24px;
|
2013-10-09 23:42:09 +02:00
|
|
|
overflow: auto;
|
|
|
|
padding: 12px;
|
2013-12-03 18:30:11 +01:00
|
|
|
white-space: pre;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
word-wrap: break-word;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
blockquote,
|
|
|
|
q {
|
|
|
|
quotes: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
blockquote:before,
|
|
|
|
blockquote:after,
|
|
|
|
q:before,
|
|
|
|
q:after {
|
|
|
|
content: "";
|
|
|
|
content: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
blockquote {
|
|
|
|
color: #767676;
|
|
|
|
font-size: 19px;
|
2013-12-03 18:30:11 +01:00
|
|
|
font-style: italic;
|
|
|
|
font-weight: 300;
|
2013-09-03 01:03:09 +02:00
|
|
|
line-height: 1.2631578947;
|
2013-12-03 18:30:11 +01:00
|
|
|
margin: 0 0 24px;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
blockquote cite,
|
|
|
|
blockquote small {
|
|
|
|
color: #2b2b2b;
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: 400;
|
|
|
|
line-height: 1.5;
|
|
|
|
}
|
|
|
|
|
2013-12-03 18:30:11 +01:00
|
|
|
blockquote em,
|
|
|
|
blockquote i,
|
|
|
|
blockquote cite {
|
|
|
|
font-style: normal;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
2013-12-03 18:30:11 +01:00
|
|
|
blockquote strong,
|
|
|
|
blockquote b {
|
|
|
|
font-weight: 400;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
2013-12-03 18:30:11 +01:00
|
|
|
small {
|
|
|
|
font-size: smaller;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
2013-12-03 18:30:11 +01:00
|
|
|
big {
|
|
|
|
font-size: 125%;
|
|
|
|
}
|
|
|
|
|
|
|
|
sup,
|
|
|
|
sub {
|
|
|
|
font-size: 75%;
|
|
|
|
height: 0;
|
|
|
|
line-height: 0;
|
|
|
|
position: relative;
|
|
|
|
vertical-align: baseline;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
2013-12-03 18:30:11 +01:00
|
|
|
sup {
|
|
|
|
bottom: 1ex;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
2013-12-03 18:30:11 +01:00
|
|
|
sub {
|
|
|
|
top: .5ex;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
2013-12-03 18:30:11 +01:00
|
|
|
dl {
|
|
|
|
margin: 0 0 24px;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
2013-12-03 18:30:11 +01:00
|
|
|
dt {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
dd {
|
2013-09-03 01:03:09 +02:00
|
|
|
margin: 0 0 24px;
|
|
|
|
}
|
|
|
|
|
2013-12-03 18:30:11 +01:00
|
|
|
ul,
|
|
|
|
ol {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0 0 24px 20px;
|
|
|
|
padding-left: 0;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
2013-12-03 18:30:11 +01:00
|
|
|
ul {
|
|
|
|
list-style: disc;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
2013-12-03 18:30:11 +01:00
|
|
|
ol {
|
|
|
|
list-style: decimal;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
2013-12-03 18:30:11 +01:00
|
|
|
li > ul,
|
|
|
|
li > ol {
|
|
|
|
margin: 0 0 0 20px;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
2013-12-03 18:30:11 +01:00
|
|
|
del {
|
|
|
|
color: #767676;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
|
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
|
|
border: 0;
|
|
|
|
height: 1px;
|
|
|
|
margin-bottom: 23px;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 4.0 Links
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: #24890d;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:visited {
|
|
|
|
color: #24890d;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:focus {
|
|
|
|
outline: thin dotted;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:active,
|
|
|
|
a:hover {
|
2013-12-03 18:30:11 +01:00
|
|
|
color: #41a62a;
|
2013-09-03 01:03:09 +02:00
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
2013-12-03 18:30:11 +01:00
|
|
|
|
2013-09-03 01:03:09 +02:00
|
|
|
/**
|
|
|
|
* 5.0 Alignment
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
.alignleft {
|
|
|
|
float: left;
|
2013-12-03 18:30:11 +01:00
|
|
|
margin: 7px 24px 7px 0;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.alignright {
|
|
|
|
float: right;
|
2013-12-03 18:30:11 +01:00
|
|
|
margin: 7px 0 7px 24px;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.aligncenter {
|
|
|
|
clear: both;
|
|
|
|
display: block;
|
2013-12-03 18:30:11 +01:00
|
|
|
margin: 7px auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
blockquote.alignleft,
|
|
|
|
blockquote.alignright {
|
|
|
|
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
|
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
|
|
|
padding-top: 17px;
|
|
|
|
width: 50%;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
2013-12-03 18:30:11 +01:00
|
|
|
blockquote.alignleft p,
|
|
|
|
blockquote.alignright p {
|
|
|
|
margin-bottom: 17px;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 6.0 Tables
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2014-11-01 04:47:21 +01:00
|
|
|
.mceItemTable,
|
|
|
|
.mce-item-table {
|
2013-09-03 01:03:09 +02:00
|
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
2013-12-03 18:30:11 +01:00
|
|
|
border-width: 1px 0 0 1px;
|
|
|
|
border-collapse: separate;
|
2013-09-03 01:03:09 +02:00
|
|
|
border-spacing: 0;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 1.2857142857;
|
|
|
|
margin-bottom: 24px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2013-12-03 18:30:11 +01:00
|
|
|
.mceItemTable th,
|
2014-11-01 04:47:21 +01:00
|
|
|
.mceItemTable caption,
|
|
|
|
.mce-item-table th,
|
|
|
|
.mce-item-table caption {
|
2013-12-03 18:30:11 +01:00
|
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
|
|
border-width: 0 1px 1px 0;
|
2013-09-03 01:03:09 +02:00
|
|
|
font-weight: 700;
|
|
|
|
padding: 8px;
|
2013-12-03 18:30:11 +01:00
|
|
|
text-align: left;
|
2013-09-03 01:03:09 +02:00
|
|
|
text-transform: uppercase;
|
2013-12-03 18:30:11 +01:00
|
|
|
vertical-align: baseline;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
2014-11-01 04:47:21 +01:00
|
|
|
.mceItemTable td,
|
|
|
|
.mce-item-table td {
|
2013-12-03 18:30:11 +01:00
|
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
|
|
border-width: 0 1px 1px 0;
|
|
|
|
font-family: Lato, sans-serif;
|
|
|
|
font-size: 14px;
|
2013-09-03 01:03:09 +02:00
|
|
|
padding: 8px;
|
2013-12-03 18:30:11 +01:00
|
|
|
vertical-align: baseline;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
2013-12-03 18:30:11 +01:00
|
|
|
|
2013-09-03 01:03:09 +02:00
|
|
|
/**
|
|
|
|
* 7.0 Images
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
img {
|
|
|
|
height: auto;
|
2015-07-26 01:00:24 +02:00
|
|
|
max-width: 100%;
|
2013-09-03 01:03:09 +02:00
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-caption {
|
|
|
|
background: transparent;
|
|
|
|
border: none;
|
2013-12-03 18:30:11 +01:00
|
|
|
color: #767676;
|
2013-09-03 01:03:09 +02:00
|
|
|
margin: 0 0 24px 0;
|
2015-07-26 01:00:24 +02:00
|
|
|
max-width: 100%;
|
2013-09-03 01:03:09 +02:00
|
|
|
padding: 0;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2014-03-27 01:06:28 +01:00
|
|
|
.html5-captions .wp-caption {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2013-09-03 01:03:09 +02:00
|
|
|
.wp-caption.alignleft {
|
2013-12-03 18:30:11 +01:00
|
|
|
margin: 7px 14px 7px 0;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
2014-03-27 01:06:28 +01:00
|
|
|
.html5-captions .wp-caption.alignleft {
|
|
|
|
margin-right: 24px;
|
|
|
|
}
|
|
|
|
|
2013-09-03 01:03:09 +02:00
|
|
|
.wp-caption.alignright {
|
2013-12-03 18:30:11 +01:00
|
|
|
margin: 7px 0 7px 14px;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
2014-03-27 01:06:28 +01:00
|
|
|
.wp-caption.alignright img,
|
|
|
|
.wp-caption.alignright .wp-caption-dd {
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.html5-captions .wp-caption.alignright {
|
|
|
|
margin-left: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.html5-captions .wp-caption.alignright img,
|
|
|
|
.html5-captions .wp-caption.alignright .wp-caption-dd {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2013-09-03 01:03:09 +02:00
|
|
|
.wp-caption.aligncenter {
|
2014-07-01 18:41:15 +02:00
|
|
|
margin: 7px auto;
|
2013-09-03 01:03:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.wp-caption-dt {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-caption .wp-caption-text,
|
|
|
|
.wp-caption-dd {
|
2013-12-03 18:30:11 +01:00
|
|
|
-webkit-box-sizing: border-box;
|
2013-09-03 01:03:09 +02:00
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
|
|
|
font-size: 12px;
|
|
|
|
font-style: italic;
|
2013-12-03 18:30:11 +01:00
|
|
|
line-height: 1.5;
|
|
|
|
margin: 9px 0;
|
2013-09-03 01:03:09 +02:00
|
|
|
padding: 0 10px 0 0; /* Avoid the caption to overflow the width of the image because wp-caption has 10px wider width */
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mceTemp + ul,
|
2013-10-09 23:42:09 +02:00
|
|
|
.mceTemp + ol {
|
2013-09-03 01:03:09 +02:00
|
|
|
list-style-position: inside;
|
|
|
|
}
|
|
|
|
|
2014-03-20 05:27:16 +01:00
|
|
|
/**
|
|
|
|
* 8.0 Gallery
|
|
|
|
* -----------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
.gallery .gallery-item {
|
|
|
|
float: left;
|
|
|
|
margin: 0 4px 4px 0;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 0;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gallery-columns-1 .gallery-item {
|
|
|
|
max-width: 100%;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gallery-columns-2 .gallery-item {
|
|
|
|
max-width: 48%;
|
2014-03-20 18:21:14 +01:00
|
|
|
max-width: -webkit-calc(50% - 14px);
|
|
|
|
max-width: calc(50% - 14px);
|
2014-03-20 05:27:16 +01:00
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gallery-columns-3 .gallery-item {
|
|
|
|
max-width: 32%;
|
2014-03-20 18:21:14 +01:00
|
|
|
max-width: -webkit-calc(33.3% - 11px);
|
|
|
|
max-width: calc(33.3% - 11px);
|
2014-03-20 05:27:16 +01:00
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gallery-columns-4 .gallery-item {
|
|
|
|
max-width: 23%;
|
2014-03-20 18:21:14 +01:00
|
|
|
max-width: -webkit-calc(25% - 9px);
|
|
|
|
max-width: calc(25% - 9px);
|
2014-03-20 05:27:16 +01:00
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gallery-columns-5 .gallery-item {
|
|
|
|
max-width: 19%;
|
2014-03-20 18:21:14 +01:00
|
|
|
max-width: -webkit-calc(20% - 8px);
|
|
|
|
max-width: calc(20% - 8px);
|
2014-03-20 05:27:16 +01:00
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gallery-columns-6 .gallery-item {
|
|
|
|
max-width: 15%;
|
2014-03-20 18:21:14 +01:00
|
|
|
max-width: -webkit-calc(16.7% - 7px);
|
|
|
|
max-width: calc(16.7% - 7px);
|
2014-03-20 05:27:16 +01:00
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gallery-columns-7 .gallery-item {
|
|
|
|
max-width: 13%;
|
2014-03-20 18:21:14 +01:00
|
|
|
max-width: -webkit-calc(14.28% - 7px);
|
|
|
|
max-width: calc(14.28% - 7px);
|
2014-03-20 05:27:16 +01:00
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gallery-columns-8 .gallery-item {
|
|
|
|
max-width: 11%;
|
2014-03-20 18:21:14 +01:00
|
|
|
max-width: -webkit-calc(12.5% - 6px);
|
|
|
|
max-width: calc(12.5% - 6px);
|
2014-03-20 05:27:16 +01:00
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gallery-columns-9 .gallery-item {
|
|
|
|
max-width: 9%;
|
2014-03-20 18:21:14 +01:00
|
|
|
max-width: -webkit-calc(11.1% - 6px);
|
|
|
|
max-width: calc(11.1% - 6px);
|
2014-03-20 05:27:16 +01:00
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gallery-columns-1 .gallery-item:nth-of-type(1n),
|
|
|
|
.gallery-columns-2 .gallery-item:nth-of-type(2n),
|
|
|
|
.gallery-columns-3 .gallery-item:nth-of-type(3n),
|
|
|
|
.gallery-columns-4 .gallery-item:nth-of-type(4n),
|
|
|
|
.gallery-columns-5 .gallery-item:nth-of-type(5n),
|
|
|
|
.gallery-columns-6 .gallery-item:nth-of-type(6n),
|
|
|
|
.gallery-columns-7 .gallery-item:nth-of-type(7n),
|
|
|
|
.gallery-columns-8 .gallery-item:nth-of-type(8n),
|
|
|
|
.gallery-columns-9 .gallery-item:nth-of-type(9n) {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gallery-columns-1 .gallery-item:nth-of-type(1n),
|
|
|
|
.gallery-columns-2 .gallery-item:nth-of-type(2n - 1),
|
2014-03-20 18:21:14 +01:00
|
|
|
.gallery-columns-3 .gallery-item:nth-of-type(3n - 2),
|
2014-03-20 05:27:16 +01:00
|
|
|
.gallery-columns-4 .gallery-item:nth-of-type(4n - 3),
|
|
|
|
.gallery-columns-5 .gallery-item:nth-of-type(5n - 4),
|
|
|
|
.gallery-columns-6 .gallery-item:nth-of-type(6n - 5),
|
|
|
|
.gallery-columns-7 .gallery-item:nth-of-type(7n - 6),
|
|
|
|
.gallery-columns-8 .gallery-item:nth-of-type(8n - 7),
|
|
|
|
.gallery-columns-9 .gallery-item:nth-of-type(9n - 8) {
|
2014-03-20 18:21:14 +01:00
|
|
|
margin-left: 12px; /* Compensate for the default negative margin on .gallery, which can't be changed. */
|
2014-03-20 05:27:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.gallery .gallery-caption {
|
|
|
|
background-color: rgba(0, 0, 0, 0.7);
|
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
|
|
|
color: #fff;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 1.5;
|
|
|
|
margin: 0;
|
|
|
|
max-height: 50%;
|
|
|
|
opacity: 0;
|
|
|
|
padding: 6px 8px;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
text-align: left;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gallery .gallery-caption:before {
|
|
|
|
content: "";
|
|
|
|
height: 100%;
|
|
|
|
min-height: 49px;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gallery-item:hover .gallery-caption {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gallery-columns-7 .gallery-caption,
|
|
|
|
.gallery-columns-8 .gallery-caption,
|
|
|
|
.gallery-columns-9 .gallery-caption {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 9.0 Audio/Video
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
.mejs-mediaelement,
|
|
|
|
.mejs-container .mejs-controls {
|
|
|
|
background: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mejs-controls .mejs-time-rail .mejs-time-loaded,
|
|
|
|
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
|
|
|
|
background: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mejs-controls .mejs-time-rail .mejs-time-current {
|
|
|
|
background: #24890d;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mejs-controls .mejs-time-rail .mejs-time-total,
|
|
|
|
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
|
|
|
|
background: rgba(255, 255, 255, .33);
|
|
|
|
}
|
|
|
|
|
|
|
|
.mejs-controls .mejs-time-rail span,
|
|
|
|
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
|
|
|
|
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mejs-overlay-loading {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
2014-06-06 20:57:14 +02:00
|
|
|
.mejs-overlay-button {
|
|
|
|
background-color: #fff;
|
|
|
|
background-image: none;
|
2014-07-14 19:48:15 +02:00
|
|
|
border-radius: 2px;
|
2014-06-06 20:57:14 +02:00
|
|
|
box-shadow: 1px 1px 1px rgba(0,0,0,.8);
|
|
|
|
color: #000;
|
2014-07-14 19:48:15 +02:00
|
|
|
height: 36px;
|
|
|
|
width: 48px;
|
2014-06-06 20:57:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mejs-overlay-button:before {
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
content: '\f452';
|
|
|
|
display: inline-block;
|
2014-07-14 19:48:15 +02:00
|
|
|
font: normal 32px/1.125 Genericons;
|
2019-01-02 02:47:51 +01:00
|
|
|
position: relative;
|
2014-07-14 19:48:15 +02:00
|
|
|
top: 1px;
|
2014-06-06 20:57:14 +02:00
|
|
|
left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mejs-controls .mejs-button button:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mejs-controls .mejs-button button {
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
background: none;
|
|
|
|
color: #fff;
|
|
|
|
display: inline-block;
|
|
|
|
font: normal 16px/1 Genericons;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mejs-playpause-button.mejs-play button:before {
|
|
|
|
content: '\f452';
|
|
|
|
}
|
|
|
|
|
|
|
|
.mejs-playpause-button.mejs-pause button:before {
|
|
|
|
content: '\f448';
|
|
|
|
}
|
|
|
|
|
|
|
|
.mejs-volume-button.mejs-mute button:before {
|
|
|
|
content: '\f109';
|
|
|
|
font-size: 20px;
|
|
|
|
position: absolute;
|
|
|
|
top: -2px;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mejs-volume-button.mejs-unmute button:before {
|
|
|
|
content: '\f109';
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mejs-fullscreen-button button:before {
|
|
|
|
content: '\f474';
|
|
|
|
}
|
|
|
|
|
|
|
|
.mejs-fullscreen-button.mejs-unfullscreen button:before {
|
|
|
|
content: '\f406';
|
|
|
|
}
|
|
|
|
|
|
|
|
.mejs-overlay:hover .mejs-overlay-button {
|
|
|
|
background-color: #24890d;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mejs-controls .mejs-button button:hover {
|
|
|
|
color: #41a62a;
|
|
|
|
}
|
|
|
|
|
2013-12-03 18:30:11 +01:00
|
|
|
|
2013-09-03 01:03:09 +02:00
|
|
|
/**
|
2014-03-20 05:27:16 +01:00
|
|
|
* 10.0 RTL
|
2013-09-03 01:03:09 +02:00
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
html .mceContentBody.rtl {
|
|
|
|
direction: rtl;
|
|
|
|
unicode-bidi: embed;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rtl ol,
|
|
|
|
.rtl ul {
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rtl .wp-caption,
|
|
|
|
.rtl tr th {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rtl td {
|
|
|
|
text-align: right;
|
|
|
|
}
|