recolored the buttons
This commit is contained in:
parent
a4cfbc2189
commit
33a79a831a
|
@ -71,3 +71,118 @@ header #banner { #banner-main {
|
|||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
/* -------------------- BUTTONS -------------------- */
|
||||
|
||||
.btn-primary {
|
||||
color: #ffffff;
|
||||
background-color: #6a4e7d;
|
||||
border-color: #6a4e7d;
|
||||
}
|
||||
.btn-primary:focus,
|
||||
.btn-primary.focus {
|
||||
color: #ffffff;
|
||||
background-color: #563f65;
|
||||
border-color: #000000;
|
||||
}
|
||||
.btn-primary:hover {
|
||||
color: #ffffff;
|
||||
background-color: #563f65;
|
||||
border-color: #4c3759;
|
||||
}
|
||||
.btn-primary:active,
|
||||
.btn-primary.active,
|
||||
.open > .dropdown-toggle.btn-primary {
|
||||
color: #ffffff;
|
||||
background-color: #563f65;
|
||||
border-color: #563f65;
|
||||
}
|
||||
.btn-primary:active:hover,
|
||||
.btn-primary.active:hover,
|
||||
.open > .dropdown-toggle.btn-primary:hover,
|
||||
.btn-primary:active:focus,
|
||||
.btn-primary.active:focus,
|
||||
.open > .dropdown-toggle.btn-primary:focus,
|
||||
.btn-primary:active.focus,
|
||||
.btn-primary.active.focus,
|
||||
.open > .dropdown-toggle.btn-primary.focus {
|
||||
color: #ffffff;
|
||||
background-color: #563f65;
|
||||
border-color: #563f65;
|
||||
}
|
||||
.btn-primary:active,
|
||||
.btn-primary.active,
|
||||
.open > .dropdown-toggle.btn-primary {
|
||||
background-image: none;
|
||||
}
|
||||
.btn-primary.disabled:hover,
|
||||
.btn-primary[disabled]:hover,
|
||||
fieldset[disabled] .btn-primary:hover,
|
||||
.btn-primary.disabled:focus,
|
||||
.btn-primary[disabled]:focus,
|
||||
fieldset[disabled] .btn-primary:focus,
|
||||
.btn-primary.disabled.focus,
|
||||
.btn-primary[disabled].focus,
|
||||
fieldset[disabled] .btn-primary.focus {
|
||||
background-color: #563f65;
|
||||
border-color: #563f65;
|
||||
}
|
||||
|
||||
|
||||
.btn-default {
|
||||
color: #ffffff;
|
||||
background-color: #b8a3c6;
|
||||
border-color: #b8a3c6;
|
||||
}
|
||||
.btn-default:focus,
|
||||
.btn-default.focus {
|
||||
color: #ffffff;
|
||||
background-color: #9c7eaf;
|
||||
border-color: #9c7eaf;
|
||||
}
|
||||
.btn-default:hover {
|
||||
color: #ffffff;
|
||||
background-color: #9c7eaf;
|
||||
border-color: #8966a0;
|
||||
}
|
||||
.btn-default:active,
|
||||
.btn-default.active,
|
||||
.open > .dropdown-toggle.btn-default {
|
||||
color: #ffffff;
|
||||
background-color: #9c7eaf;
|
||||
border-color: #9c7eaf;
|
||||
}
|
||||
.btn-default:active:hover,
|
||||
.btn-default.active:hover,
|
||||
.open > .dropdown-toggle.btn-default:hover,
|
||||
.btn-default:active:focus,
|
||||
.btn-default.active:focus,
|
||||
.open > .dropdown-toggle.btn-default:focus,
|
||||
.btn-default:active.focus,
|
||||
.btn-default.active.focus,
|
||||
.open > .dropdown-toggle.btn-default.focus {
|
||||
color: #ffffff;
|
||||
background-color: #9c7eaf;
|
||||
border-color: #9c7eaf;
|
||||
}
|
||||
.btn-default:active,
|
||||
.btn-default.active,
|
||||
.open > .dropdown-toggle.btn-default {
|
||||
background-image: none;
|
||||
}
|
||||
.btn-default.disabled:hover,
|
||||
.btn-default[disabled]:hover,
|
||||
fieldset[disabled] .btn-default:hover,
|
||||
.btn-default.disabled:focus,
|
||||
.btn-default[disabled]:focus,
|
||||
fieldset[disabled] .btn-default:focus,
|
||||
.btn-default.disabled.focus,
|
||||
.btn-default[disabled].focus,
|
||||
fieldset[disabled] .btn-default.focus {
|
||||
background-color: #9c7eaf;
|
||||
border-color: #9c7eaf;
|
||||
}
|
||||
.btn-default .badge {
|
||||
color: #9c7eaf;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue