This snippet will change the appearance of your spot box module.
Spot box

1) Spot box - Headline (font color, font size)
2) Spot box - Body text (font color, font size)
3) Spot box - Body text - Link (font color)
4) Spot box - Body text - Hover (font color)
5) Spot box - Box (background color)
/* Spot box module */
/* 1) Box headline */
.box .h2 {
font-size: 1.75em;
color: #fff;
}
/* 2) Box body text */
.box p {
font-size: 1.0em;
color: #fe5858;
}
/* 3) Box body text */
.box p a {
color: #fff;
text-decoration: none;
}
/* 4) Box body text */
.box p a:hover {
color: rgba(255,255,255,0.8);
text-decoration: none;
}
/* 5) Box background color */
.box {
background: #073e54;
}
Copy to clipboard