425 lines
8.6 KiB
CSS
425 lines
8.6 KiB
CSS
/*
|
|
Theme Name: Sketch
|
|
Description: Used to style Gutenberg Blocks.
|
|
*/
|
|
|
|
/*--------------------------------------------------------------
|
|
>>> TABLE OF CONTENTS:
|
|
----------------------------------------------------------------
|
|
1.0 General Block Styles
|
|
2.0 Blocks - Common Blocks
|
|
3.0 Blocks - Formatting
|
|
4.0 Blocks - Layout Elements
|
|
5.0 Blocks - Widgets
|
|
6.0 Blocks - Colors
|
|
--------------------------------------------------------------*/
|
|
|
|
/*--------------------------------------------------------------
|
|
1.0 General Block Styles
|
|
--------------------------------------------------------------*/
|
|
|
|
/* Caption */
|
|
|
|
[class^="wp-block-"] figcaption {
|
|
font-size: 16.25px;
|
|
}
|
|
|
|
[class^="wp-block-"]:not(.wp-block-gallery) figcaption {
|
|
color: #333333;
|
|
margin-top: 0;
|
|
text-align: left;
|
|
}
|
|
|
|
.rtl [class^="wp-block-"]:not(.wp-block-gallery) figcaption {
|
|
text-align: right;
|
|
}
|
|
|
|
/* Video */
|
|
|
|
.wp-block-embed.is-type-video iframe {
|
|
max-height: 100%;
|
|
}
|
|
|
|
/*--------------------------------------------------------------
|
|
2.0 Blocks - Common Blocks
|
|
--------------------------------------------------------------*/
|
|
|
|
/* Paragraph */
|
|
|
|
p.has-drop-cap:not(:focus)::first-letter {
|
|
font-size: 5em;
|
|
margin-top: 0.15em;
|
|
}
|
|
|
|
/* Gallery */
|
|
|
|
.wp-block-gallery {
|
|
margin: 0 0 27px;
|
|
}
|
|
|
|
/* Quote */
|
|
|
|
.wp-block-quote.is-large,
|
|
.wp-block-quote.is-style-large {
|
|
padding-right: 0;
|
|
}
|
|
|
|
.wp-block-quote.is-large p,
|
|
.wp-block-quote.is-style-large p {
|
|
font-size: 26px;
|
|
}
|
|
|
|
.wp-block-quote.is-large cite,
|
|
.wp-block-quote.is-style-large cite {
|
|
font-size: 22px;
|
|
}
|
|
|
|
@media (min-width: 50em) {
|
|
.wp-block-quote.is-large p,
|
|
.wp-block-quote.is-style-large p {
|
|
font-size: 32px;
|
|
}
|
|
|
|
.wp-block-quote.is-large cite,
|
|
.wp-block-quote.is-style-large cite {
|
|
font-size: 26px;
|
|
}
|
|
}
|
|
|
|
.rtl .wp-block-quote.is-large,
|
|
.rtl .wp-block-quote.is-style-large,
|
|
.wp-block-quote[style*="text-align:right"],
|
|
.wp-block-quote.is-large[style*="text-align:right"],
|
|
.wp-block-quote.is-style-large[style*="text-align:right"] {
|
|
border-left: 0;
|
|
border-right: 3px solid #eee;
|
|
padding-left: 0;
|
|
padding-right: 24px;
|
|
}
|
|
|
|
.wp-block-quote[style*="text-align:center"],
|
|
.wp-block-quote.is-large[style*="text-align:center"],
|
|
.wp-block-quote.is-style-large[style*="text-align:center"] {
|
|
border: 0;
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
}
|
|
|
|
.rtl .wp-block-quote[style*="text-align:left"],
|
|
.rtl .wp-block-quote.is-large[style*="text-align:left"],
|
|
.rtl .wp-block-quote.is-style-large[style*="text-align:left"] {
|
|
border-left: 3px solid #eee;
|
|
border-right: 0;
|
|
padding-left: 24px;
|
|
padding-right: 0;
|
|
}
|
|
|
|
/* Audio */
|
|
|
|
.wp-block-audio {
|
|
margin-bottom: 27px;
|
|
}
|
|
|
|
.wp-block-audio audio {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
/* Cover */
|
|
|
|
.wp-block-cover.aligncenter,
|
|
.wp-block-cover-image.aligncenter,
|
|
.wp-block-cover.alignleft,
|
|
.wp-block-cover-image.alignleft,
|
|
.wp-block-cover.alignright,
|
|
.wp-block-cover-image.alignright {
|
|
display: flex;
|
|
}
|
|
|
|
.wp-block-cover-image .wp-block-cover-image-text,
|
|
.wp-block-cover-image .wp-block-cover-text,
|
|
.wp-block-cover-image h2,
|
|
.wp-block-cover .wp-block-cover-image-text,
|
|
.wp-block-cover .wp-block-cover-text,
|
|
.wp-block-cover h2 {
|
|
font-size: 1.5em;
|
|
}
|
|
|
|
/* File */
|
|
|
|
.wp-block-file a.wp-block-file__button,
|
|
.wp-block-file a.wp-block-file__button:visited {
|
|
background: transparent;
|
|
border: 3px solid #eeeeee;
|
|
border-radius: 3px;
|
|
color: #999999;
|
|
font-family: Lato, Helvetica, Arial, sans-serif;
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
letter-spacing: 2px;
|
|
padding: 10px 14px;
|
|
text-transform: uppercase;
|
|
-webkit-transition: all 0.3s ease-in-out;
|
|
-moz-transition: all 0.3s ease-in-out;
|
|
-o-transition: all 0.3s ease-in-out
|
|
transition: all 0.3s ease-in-out;
|
|
}
|
|
|
|
.wp-block-file a.wp-block-file__button:hover,
|
|
.wp-block-file a.wp-block-file__button:focus {
|
|
background: transparent;
|
|
border-color: #f68060;
|
|
color: #f68060;
|
|
}
|
|
|
|
.rtl .wp-block-file * + .wp-block-file__button {
|
|
margin-left: 0.75em;
|
|
margin-right: 0;
|
|
}
|
|
|
|
/* Video */
|
|
|
|
.wp-block-video video {
|
|
width: 100%;
|
|
}
|
|
|
|
/*--------------------------------------------------------------
|
|
3.0 Blocks - Formatting
|
|
--------------------------------------------------------------*/
|
|
|
|
/* Verse */
|
|
|
|
.wp-block-verse {
|
|
background: transparent;
|
|
font-family: inherit;
|
|
font-size: inherit;
|
|
font-style: italic;
|
|
padding: 0;
|
|
}
|
|
|
|
/* Code */
|
|
|
|
.wp-block-code code {
|
|
|
|
}
|
|
|
|
/* Pullquote */
|
|
|
|
.wp-block-pullquote {
|
|
border-top: 3px solid #eee;
|
|
border-bottom: 2px solid #eee;
|
|
}
|
|
|
|
.wp-block-pullquote blockquote {
|
|
border: 0;
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
}
|
|
|
|
.wp-block-pullquote cite {
|
|
font-size: 80%;
|
|
text-align: center;
|
|
}
|
|
|
|
/* Table */
|
|
|
|
.wp-block-table {
|
|
}
|
|
|
|
.rtl .wp-block-table th {
|
|
text-align: right;
|
|
}
|
|
|
|
/*--------------------------------------------------------------
|
|
4.0 Blocks - Layout Elements
|
|
--------------------------------------------------------------*/
|
|
|
|
/* Buttons */
|
|
|
|
.wp-block-button .wp-block-button__link {
|
|
font-family: Lato, Helvetica, Arial, sans-serif;
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
letter-spacing: 2px;
|
|
padding: 10px 20px;
|
|
text-transform: uppercase;
|
|
-webkit-transition: all 0.3s ease-in-out;
|
|
-moz-transition: all 0.3s ease-in-out;
|
|
-o-transition: all 0.3s ease-in-out
|
|
transition: all 0.3s ease-in-out;
|
|
}
|
|
|
|
.wp-block-button__link,
|
|
.wp-block-button__link:visited {
|
|
background: #999999;
|
|
color: #fff;
|
|
}
|
|
|
|
.is-style-outline .wp-block-button__link:not(.has-text-color) {
|
|
color: #999;
|
|
}
|
|
|
|
.wp-block-button .wp-block-button__link:hover,
|
|
.wp-block-button .wp-block-button__link:focus,
|
|
.wp-block-button .wp-block-button__link:active {
|
|
background-color: #f68060;
|
|
color: #fff;
|
|
}
|
|
|
|
|
|
/* Separator */
|
|
|
|
.wp-block-separator {
|
|
border: 0;
|
|
}
|
|
|
|
.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
max-width: 100px;
|
|
}
|
|
|
|
/* Media & Text */
|
|
|
|
.wp-block-media-text {
|
|
margin-bottom: 27px;
|
|
}
|
|
|
|
.wp-block-media-text *:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/*--------------------------------------------------------------
|
|
5.0 Blocks - Widgets
|
|
--------------------------------------------------------------*/
|
|
|
|
/* General Widget styles */
|
|
|
|
.wp-block-categories.aligncenter,
|
|
.wp-block-categories.aligncenter ul,
|
|
.wp-block-archives.aligncenter,
|
|
.wp-block-latest-posts.aligncenter,
|
|
.wp-block-latest-comments.aligncenter {
|
|
list-style-position: inside;
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
/* Latest Comments */
|
|
|
|
.wp-block-latest-comments {
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
}
|
|
|
|
.wp-block-latest-comments__comment-date {
|
|
color: #999;
|
|
font-size: 13px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.wp-block-latest-comments__comment {
|
|
font-size: 80%;
|
|
}
|
|
|
|
.wp-block-latest-comments__comment-excerpt p {
|
|
font-size: inherit;
|
|
}
|
|
|
|
.wp-block-latest-comments__comment-meta {
|
|
font-weight: 700;
|
|
letter-spacing: 2px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
/* Latest Posts */
|
|
|
|
.wp-block-latest-posts.is-grid {
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
}
|
|
|
|
/*--------------------------------------------------------------
|
|
6.0 Blocks - Colors
|
|
--------------------------------------------------------------*/
|
|
|
|
.has-orange-color,
|
|
.has-orange-color:hover,
|
|
.has-orange-color:focus,
|
|
.has-orange-color:active,
|
|
.has-orange-color:visited {
|
|
color: #f68060;
|
|
}
|
|
|
|
.has-orange-background-color,
|
|
.has-orange-background-color:hover,
|
|
.has-orange-background-color:focus,
|
|
.has-orange-background-color:active,
|
|
.has-orange-background-color:visited {
|
|
background-color: #f68060;
|
|
}
|
|
|
|
.has-dark-gray-color,
|
|
.has-dark-gray-color:hover,
|
|
.has-dark-gray-color:focus,
|
|
.has-dark-gray-color:active,
|
|
.has-dark-gray-color:visited {
|
|
color: #333;
|
|
}
|
|
|
|
.has-dark-gray-background-color,
|
|
.has-dark-gray-background-color:hover,
|
|
.has-dark-gray-background-color:focus,
|
|
.has-dark-gray-background-color:active,
|
|
.has-dark-gray-background-color:visited {
|
|
background-color: #333;
|
|
}
|
|
|
|
.has-medium-gray-color,
|
|
.has-medium-gray-color:hover,
|
|
.has-medium-gray-color:focus,
|
|
.has-medium-gray-color:active,
|
|
.has-medium-gray-color:visited {
|
|
color: #999;
|
|
}
|
|
|
|
.has-medium-gray-background-color,
|
|
.has-medium-gray-background-color:hover,
|
|
.has-medium-gray-background-color:focus,
|
|
.has-medium-gray-background-color:active,
|
|
.has-medium-gray-background-color:visited {
|
|
background-color: #999;
|
|
}
|
|
|
|
.has-light-gray-color,
|
|
.has-light-gray-color:hover,
|
|
.has-light-gray-color:focus,
|
|
.has-light-gray-color:active,
|
|
.has-light-gray-color:visited {
|
|
color: #eee;
|
|
}
|
|
|
|
.has-light-gray-background-color,
|
|
.has-light-gray-background-color:hover,
|
|
.has-light-gray-background-color:focus,
|
|
.has-light-gray-background-color:active,
|
|
.has-light-gray-background-color:visited {
|
|
background-color: #eee;
|
|
}
|
|
|
|
.has-white-color,
|
|
.has-white-color:hover,
|
|
.has-white-color:focus,
|
|
.has-white-color:active,
|
|
.has-white-color:visited {
|
|
color: #fff;
|
|
}
|
|
|
|
.has-white-background-color,
|
|
.has-white-background-color:hover,
|
|
.has-white-background-color:focus,
|
|
.has-white-background-color:active,
|
|
.has-white-background-color:visited {
|
|
background-color: #fff;
|
|
}
|