You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mvfront-react/styles/scss/_button.scss

83 lines
1.6 KiB

@use "sass:map";
.btn {
//width: 165px;
padding: 8px 24px;
// background: $mv-blue-color;
box-sizing: border-box;
font-family: DM Sans;
font-style: normal;
font-weight: bold;
font-size: 16px;
line-height: 24px;
letter-spacing: -0.5px;
display: flex;
justify-content: center;
align-items: center;
border-style: solid;
border-radius: 0px;
}
*[class*="btn-outline-"] {
box-shadow: 0px 4px 0px;
border-width: 2px;
}
.btn-opacity:hover {
background-color: transparent;
border-color: white;
opacity: 1;
}
.btn-opacity {
background-color: transparent;
width: fit-content;
opacity: 0.4;
transition: 0.5s;
}
.btn-transparent:hover {
background-color: transparent;
border-color: white;
}
.btn-transparent {
background-color: transparent;
width: fit-content;
transition: 0.5s;
margin: auto;
}
*.btn[class*="-secondary"] {
/* width: fit-content;*/
background-color: transparent;
border-color: white;
color: white;
}
*.btn[class*="-primary"] {
border: 2px solid $mv-blue-color;
box-shadow: 0px 5px 0px #7a64f9;
}
*.btn[class*="-info"] {
background-color: #4a2fef;
border: 2px solid #4a2fef;
}
.btn:not([class*="btn-outline-"]):hover {
background-color: rgb(255, 255, 255, 0.2);
color: inherit;
border-color: inherit;
border-width: 2px;
box-shadow: unset;
}
.btn.btn-danger:hover {
color: map.get($theme-colors, "danger");
border-color: map.get($theme-colors, "danger");
border-width: 2px;
box-shadow: unset;
}
.btn_menu {
position: absolute;
top: 20px;
right: 20px;
}
.btn_shadow{
box-shadow: 0px 2px 0px #8F88BA;
}