Skip to content

Instantly share code, notes, and snippets.

@kathrynwp
Last active June 14, 2023 20:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kathrynwp/96239c20a33084e1b1be7a4e31cc60ec to your computer and use it in GitHub Desktop.
Save kathrynwp/96239c20a33084e1b1be7a4e31cc60ec to your computer and use it in GitHub Desktop.
Code snippets and resources from Custom CSS in the Site-Editing Era workshop presented on June 14, 2023
/* Image block - caption */
.wp-block-image figcaption {
margin-top: 0;
padding: 20px 10px;
background-color: #4ccee6;
color: #563429;
font-weight: bold;
}
/* Quote block - first letter different */
.wp-block-quote p::first-letter {
font-weight: bold;
color: #4ccee6;
font-size: 70px;
}
/* Quote block - citation */
.wp-block-quote cite {
font-variant: small-caps;
}
/* Button hover */
.wp-block-button__link:hover {
background-color:#4ccee6;
}
/* Unordered list */
ul {
list-style-type: square;
}
/* Special button hover - use this with an Additional CSS class in the block editor */
.my-special-class .wp-block-button__link:hover {
background-color: #bb00bb;
}
@kathrynwp
Copy link
Author

kathrynwp commented Jun 14, 2023

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment