Files
IWD2-02/INFO-3163 (CMS Web Dev)/Project/project/wp-content/themes/bluehost-blueprint-child/style.css
T
2026-04-15 15:59:53 -04:00

57 lines
1.6 KiB
CSS

/*
Theme Name: Bluehost Blueprint Child
Template: bluehost-blueprint
Description: Child theme for Bluehost Blueprint.
Author: Levi McLean
Version: 1.0.0
Text Domain: bluehost-blueprint-child
*/
/* 1. Body text: keep readable sizing and spacing. */
body {
font-family: var(--wp--preset--font-family--ubuntu-sans);
font-size: 1rem;
line-height: 1.7;
}
/* 2. Site title: use Bitcount Grid Double for a distinctive logo feel. */
.wp-block-site-title {
font-family: var(--wp--preset--font-family--bitcount-grid-double);
letter-spacing: 0.08em;
text-transform: uppercase;
}
/* 3. Main navigation: use Share Tech for a techy, compact look. */
.wp-block-navigation a {
font-family: var(--wp--preset--font-family--share-tech);
letter-spacing: 0.06em;
text-transform: uppercase;
}
/* 4. Primary buttons: rounded corners and Quicksand background. */
.wp-element-button,
.wp-block-button__link {
background-color: var(--wp--preset--color--accent-1);
color: var(--wp--preset--color--base);
border-radius: 999px;
padding-inline: 1.5rem;
padding-block: 0.75rem;
}
/* 5. Button hover + link hover: emphasize Buccaneer accent. */
.wp-element-button:hover,
.wp-block-button__link:hover {
background-color: var(--wp--preset--color--accent-2);
}
a:hover {
color: var(--wp--preset--color--accent-2);
}
/* 6. Card-style blocks: subtle border using Fuscous Gray. */
.wp-block-group.is-style-default,
.wp-block-group.has-background {
border: 1px solid var(--wp--preset--color--accent-3);
border-radius: 0.75rem;
padding: 1.5rem;
}