"Buttons"
Bootstrap 4.1.1 Snippet by kanikamadaan

1
2
3
4
5
6
7
8
9
10
11
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<button class="btn-primary-green-on-white coE-button"> Primary Green on White</button>
<button class="btn-secondary-green-on-white coE-button"> Secondary Green on White</button>
<button class="btn-primary-green-on-dark coE-button"> Primary Green on Dark</button>
<button class="btn-primary-white-on-dark coE-button"> Primary White on Dark</button>
<button class="btn-secondary-green-on-dark coE-button"> Secondary Green on Dark</button>
<button class="btn-secondary-white-on-dark coE-button"> Secondary White on Dark</button>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;400;600;700;900&display=swap');
.coE-button {
font-family: 'Titillium Web', sans-serif, 'FontAwesome' !important;
font-size: 16px;
font-weight: Bold;
cursor: pointer;
display: inline-block;
text-align: center;
padding: 8px 30px;
border-radius: 67px;
}
.coE-button:hover {
border-radius: 67px;
}
.coE-button[disabled] {
background: #F2F2F2;
color: #B3B3B3;
border: 2px solid #F2F2F2;
cursor: not-allowed;
}
.btn-primary-green-on-white {
background: #4BCD3E;
border: 2px solid #4BCD3E;
color: #012834;
}
.btn-primary-green-on-white:hover {
background: none;
}
.btn-primary-green-on-white:active {
background: #4BCD3E;
outline: none;
color: #ffffff;
}
.btn-primary-green-on-dark {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: