http://zooninidev.com/css-secrets/
Use ←left & right→ arrow keys to navigate
What is CSS?
Do I need to write down the secrets?
/* Change the text color in posts and pages */
.entry-content {
color: #b8661a;
}
/* Hide the tagline and remove its space */
.site-description {
display: none;
}
/* Hide the tagline but preserve its space */
.site-description {
visibility: hidden;
}
/* Add maple leaf before page and post titles */
.entry-title::before {
content: url("http://localhost:8888/css-secrets/wp-content/uploads/2017/10/mapleleaf.png");
}
/* Add copyright line after default footer */
.site-info::after {
content: "Copyright 2018 KP's Maple House";
display: block;
}
.home
.single-post
.blog
.category
.tag
.postid-10
.page-id-15
.menu-item-20
<body class="home blog logged-in">
/* On homepage - add maple leaf before page and post titles */
.home .entry-title::before {
content: url("http://localhost:8888/css-secrets/wp-content/uploads/2017/10/mapleleaf.png");
}
/* Change size of site title */
.site-title {
font-size: 40px;
}
/* Change size of post and page titles */
.entry-title {
font-size: 40px;
}
/* Change size of site title, post, and page titles */
.site-title,
.entry-title {
font-size: 40px;
}
/* Change font of top contact information strip */
.contact-info-wrapper {
font-family: "Roboto Condensed", Arial, sans-serif;
}
@media all and (max-width: 767px) {
.home .hero-area {
display: none;
}
}
Child theme or plugin!
The presentation:
zooninidev.com/css-secrets/
Built with: reveal.js
Demo theme: Radcliffe 2
Maple leaf: Hopkins - Noun Project
Twitter: @zoonini
Web: https://kpresner.com