Skip to content

Button

Standard User

Available to anyone with page-editing access

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

<!-- PRIMARY BUTTON (MIDLAND — #104D9C) -->
<a href="#" style="display: inline-block; background-color: #104D9C; 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 #104D9C; cursor: pointer;">Primary Button</a>
<!-- SECONDARY BUTTON (MIDLAND — #A6A5A5) -->
<a href="#" style="display: inline-block; background-color: #A6A5A5; color: #1a1a1a; 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 rgba(0,0,0,0.2); cursor: pointer;">Secondary Button</a>
<!-- ACCENT BUTTON (MIDLAND — #0E212F) -->
<a href="#" style="display: inline-block; background-color: #0E212F; 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 #0E212F; cursor: pointer;">Accent Button</a>
<!-- OUTLINE BUTTON (MIDLAND — #104D9C border) -->
<a href="#" style="display: inline-block; background-color: transparent; color: #104D9C; 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 #104D9C; cursor: pointer;">Outline Button</a>
<!-- BUTTON GROUP (MIDLAND) -->
<div style="display: flex; gap: 12px; flex-wrap: wrap; align-items: center;">
<a href="#" style="display: inline-block; background-color: #104D9C; 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 #104D9C; cursor: pointer;">Primary</a>
<a href="#" style="display: inline-block; background-color: transparent; color: #104D9C; 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 #104D9C; cursor: pointer;">Learn More</a>
</div>