Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* Lore buttons — match the landing page's homebtn style, adapted for Cosmos */
.lore-btn,
a.lore-btn,
.formlink-button .lore-btn,
button.lore-btn {
display: inline-block;
border: 3px solid #45360f;
color: #45360f;
background-color: transparent;
border-radius: 0;
padding: 15px 30px;
font-size: 22px;
text-transform: uppercase;
font-weight: 700;
text-decoration: none;
text-align: center;
cursor: pointer;
transition: background-color 0.2s, color 0.2s;
}
.lore-btn:hover,
a.lore-btn:hover,
.formlink-button .lore-btn:hover,
button.lore-btn:hover {
border: 3px solid #45360f;
background-color: #45360f;
color: #e3dac3;
text-decoration: none;
}
/* Button wrappers on the main page */
.lore-btn-wrapper {
display: inline-block;
margin: 15px;
text-align: center;
vertical-align: top;
}
.lore-btn-count {
display: block;
font-size: 14px;
color: #45360f;
margin-top: 8px;
max-width: 220px;
text-transform: none;
font-weight: normal;
}
.lore-buttons {
text-align: center;
margin: 30px 0;
}
.lore-intro {
text-align: left;
margin-bottom: 20px;
}
.lore-welcome {
margin: 10px 0;
}
/* Form button (PageForms formlink) styling */
.formlink-button a,
.formlink-button button {
border: 3px solid #45360f;
color: #45360f;
background-color: transparent;
border-radius: 0;
padding: 12px 25px;
font-size: 18px;
text-transform: uppercase;
font-weight: 700;
text-decoration: none;
cursor: pointer;
transition: background-color 0.2s, color 0.2s;
}
.formlink-button a:hover,
.formlink-button button:hover {
background-color: #45360f;
color: #e3dac3;
text-decoration: none;
}
