hugo-toha/assets/styles/components/buttons.scss
hossainemruz b34c6860be Refactor single page css
Signed-off-by: hossainemruz <hossainemruz@gmail.com>
2023-09-28 00:57:09 +06:00

94 lines
1.6 KiB
SCSS

.btn-dark {
background-color: #3c4858 !important;
border-color: #3c4858 !important;
color: #e5e9f2 !important;
transition: all 0.3s ease-out !important;
&:hover,
&:focus {
background-color: #248aaa !important;
border-color: #248aaa !important;
transition: all 0.3s ease-out !important;
}
}
.btn-info {
background-color: #248aaa !important;
color: #e5e9f2 !important;
&:hover,
&:focus {
background-color: #2098d1 !important;
color: #e5e9f2 !important;
}
}
.btn-outline-info {
color: #2098d1 !important;
border-color: #2098d1 !important;
&:hover,
&:focus {
background-color: #2098d1 !important;
color: #e5e9f2 !important;
}
}
.btn-link {
color: #248aaa;
&:hover,
&:focus {
color: #207089;
}
}
.nav-button {
background-color: transparent;
border: 1px solid transparent;
border-radius: 0.25rem;
color: #8392a5;
}
.tags {
text-align: left;
li {
font-size: 0.5em;
list-style-type: none;
display: inline-block;
background: #248aaa;
margin-left: 0.1em;
margin-right: 0.1em;
}
a {
color: #f9fafc;
}
}
.icon-button {
background-color: #3c4858;
color: #e5e9f2 !important;
padding: 0.25rem 0.5rem;
line-height: 1.5;
border-radius: 0.2rem;
border: none;
&:hover,
&:focus {
background-color: #248aaa !important;
transition: all 0.3s ease-out !important;
}
}
.filled-button {
color: #f9fafc !important;
background-color: #248aaa !important;
transition: all 0.3s ease-out;
&:hover,
&:active {
background-color: #0cafe1 !important;
transition: all 0.3 ease-out;
}
}