Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
88 changes: 88 additions & 0 deletions _index.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
.btn-outline {

background: none;
//border-width: 2px;
border-color: transparent;
font-weight: 400;

&:hover {
background: none;
border-color: transparent;
}

&.btn-white {
box-shadow: 0 0 0 2px rgba(255,255,255, 0.8) inset;
color: rgba(255,255,255, 0.8);

&:hover {
box-shadow: 0 0 0 2px rgba(255,255,255, 1) inset;
color: rgba(255,255,255, 1);
}

}

&.btn-primary {

box-shadow: 0 0 0 2px darken($brand-primary, 10%) inset;
color: darken($brand-primary, 10%);

&:hover {
box-shadow: 0 0 0 2px $brand-primary inset;
color: $brand-primary;
}

}

&.btn-success {

box-shadow: 0 0 0 2px darken($brand-success, 10%) inset;
color: darken($brand-success, 10%);

&:hover {
box-shadow: 0 0 0 2px $brand-success inset;
color: $brand-success;
}

}

&.btn-info {

box-shadow: 0 0 0 2px darken($brand-info, 10%) inset;
color: darken($brand-info, 10%);

&:hover {
box-shadow: 0 0 0 2px $brand-info inset;
color: $brand-info;
}

}

&.btn-warning {

box-shadow: 0 0 0 2px darken($brand-warning, 10%) inset;
color: darken($brand-warning, 10%);

&:hover {
box-shadow: 0 0 0 2px $brand-warning inset;
color: $brand-warning;
}

}

&.btn-danger {

box-shadow: 0 0 0 2px darken($brand-danger, 10%) inset;
color: darken($brand-danger, 10%);

&:hover {
box-shadow: 0 0 0 2px $brand-danger inset;
color: $brand-danger;
}

}

}

.btn-rounded {
border-radius: 50px;
}