Skip to content

Button

Standard User

Available to anyone with page-editing access

Clickable button components using Rolling Hills brand colors. Copy any snippet below and paste it directly into the Edlio CMS WYSIWYG editor.

<!-- PRIMARY BUTTON (ROLLING HILLS — #3785be) -->
<a href="#" style="display: inline-block; background-color: #3785be; color: #ffffff; padding: 12px 24px; text-decoration: none; border-radius: 4px; font-size: 16px; font-weight: 600; text-align: center; transition: background-color 0.3s ease; border: 2px solid #3785be; cursor: pointer;">Primary Button</a>
<!-- SECONDARY BUTTON (ROLLING HILLS — #04253c) -->
<a href="#" style="display: inline-block; background-color: #04253c; color: #ffffff; padding: 12px 24px; text-decoration: none; border-radius: 4px; font-size: 16px; font-weight: 600; text-align: center; transition: background-color 0.3s ease; border: 2px solid #04253c; cursor: pointer;">Secondary Button</a>
<!-- ACCENT BUTTON (ROLLING HILLS — #040505) -->
<a href="#" style="display: inline-block; background-color: #040505; color: #ffffff; padding: 12px 24px; text-decoration: none; border-radius: 4px; font-size: 16px; font-weight: 600; text-align: center; transition: background-color 0.3s ease; border: 2px solid #040505; cursor: pointer;">Accent Button</a>
<!-- OUTLINE BUTTON (ROLLING HILLS — #3785be border) -->
<a href="#" style="display: inline-block; background-color: transparent; color: #3785be; padding: 12px 24px; text-decoration: none; border-radius: 4px; font-size: 16px; font-weight: 600; text-align: center; transition: all 0.3s ease; border: 2px solid #3785be; cursor: pointer;">Outline Button</a>
<!-- BUTTON GROUP (ROLLING HILLS) -->
<div style="display: flex; gap: 12px; flex-wrap: wrap; align-items: center;">
<a href="#" style="display: inline-block; background-color: #3785be; color: #ffffff; padding: 12px 24px; text-decoration: none; border-radius: 4px; font-size: 16px; font-weight: 600; text-align: center; transition: background-color 0.3s ease; border: 2px solid #3785be; cursor: pointer;">Primary</a>
<a href="#" style="display: inline-block; background-color: transparent; color: #3785be; padding: 12px 24px; text-decoration: none; border-radius: 4px; font-size: 16px; font-weight: 600; text-align: center; transition: all 0.3s ease; border: 2px solid #3785be; cursor: pointer;">Learn More</a>
</div>