updating initial layout
This commit is contained in:
26
andrew_portfolio/static/scss/components/_buttons.scss
Normal file
26
andrew_portfolio/static/scss/components/_buttons.scss
Normal file
@@ -0,0 +1,26 @@
|
||||
// Button Styles
|
||||
.btn {
|
||||
@include heading-font;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.btn-xl {
|
||||
font-size: 18px;
|
||||
padding: 20px 40px;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background-color: $primary;
|
||||
border-color: $primary;
|
||||
&:active,
|
||||
&:focus,
|
||||
&:hover {
|
||||
background-color: darken($primary, 7.5%) !important;
|
||||
border-color: darken($primary, 7.5%) !important;
|
||||
color: white;
|
||||
}
|
||||
&:active,
|
||||
&:focus {
|
||||
box-shadow: 0 0 0 0.2rem rgba(254, 209, 55,.5) !important;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user