mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-09 20:30:43 +01:00
c6d8f995cd
Props atimmer. Merges [43886] to trunk. See #45156. Built from https://develop.svn.wordpress.org/trunk@44245 git-svn-id: http://core.svn.wordpress.org/trunk@44075 1a063a9b-81f0-0310-95a4-ce76da25c4cd
109 lines
2.2 KiB
CSS
109 lines
2.2 KiB
CSS
/**
|
|
* Colors
|
|
*/
|
|
/**
|
|
* Breakpoints & Media Queries
|
|
*/
|
|
/**
|
|
* Often re-used variables
|
|
*/
|
|
/**
|
|
* Breakpoint mixins
|
|
*/
|
|
/**
|
|
* Long content fade mixin
|
|
*
|
|
* Creates a fading overlay to signify that the content is longer
|
|
* than the space allows.
|
|
*/
|
|
/**
|
|
* Button states and focus styles
|
|
*/
|
|
/**
|
|
* Applies editor left position to the selector passed as argument
|
|
*/
|
|
/**
|
|
* Applies editor right position to the selector passed as argument
|
|
*/
|
|
/**
|
|
* Styles that are reused verbatim in a few places
|
|
*/
|
|
@keyframes fade-in {
|
|
from {
|
|
opacity: 0; }
|
|
to {
|
|
opacity: 1; } }
|
|
|
|
@keyframes editor_region_focus {
|
|
from {
|
|
box-shadow: inset 0 0 0 0 #33b3db; }
|
|
to {
|
|
box-shadow: inset 0 0 0 4px #33b3db; } }
|
|
|
|
@keyframes rotation {
|
|
from {
|
|
transform: rotate(0deg); }
|
|
to {
|
|
transform: rotate(360deg); } }
|
|
|
|
@keyframes modal-appear {
|
|
from {
|
|
margin-top: 32px; }
|
|
to {
|
|
margin-top: 0; } }
|
|
|
|
.wp-block-code {
|
|
font-family: Menlo, Consolas, monaco, monospace;
|
|
font-size: 14px;
|
|
color: #23282d;
|
|
padding: 0.8em 1em;
|
|
border: 1px solid #e2e4e7;
|
|
border-radius: 4px; }
|
|
|
|
.wp-block-preformatted pre {
|
|
font-family: Menlo, Consolas, monaco, monospace;
|
|
font-size: 14px;
|
|
color: #23282d; }
|
|
|
|
.wp-block-pullquote {
|
|
border-top: 4px solid #555d66;
|
|
border-bottom: 4px solid #555d66;
|
|
color: #40464d; }
|
|
.wp-block-pullquote cite,
|
|
.wp-block-pullquote footer, .wp-block-pullquote__citation {
|
|
color: #40464d;
|
|
text-transform: uppercase;
|
|
font-size: 13px;
|
|
font-style: normal; }
|
|
|
|
.wp-block-quote {
|
|
margin: 20px 0; }
|
|
.wp-block-quote cite,
|
|
.wp-block-quote footer, .wp-block-quote__citation {
|
|
color: #6c7781;
|
|
font-size: 13px;
|
|
margin-top: 1em;
|
|
position: relative;
|
|
font-style: normal; }
|
|
|
|
.wp-block-quote:not(.is-large):not(.is-style-large) {
|
|
border-left: 4px solid #000;
|
|
padding-left: 1em; }
|
|
|
|
.wp-block-separator {
|
|
border: none;
|
|
border-bottom: 2px solid #8f98a1;
|
|
margin: 1.65em auto; }
|
|
.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
|
|
max-width: 100px; }
|
|
|
|
.wp-block-table {
|
|
width: 100%;
|
|
min-width: 240px;
|
|
border-collapse: collapse; }
|
|
.wp-block-table td,
|
|
.wp-block-table th {
|
|
padding: 0.5em;
|
|
border: 1px solid currentColor;
|
|
word-break: break-all; }
|