mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-05 18:26:45 -05:00
46 lines
667 B
SCSS
46 lines
667 B
SCSS
.Button {
|
|
padding: 10px;
|
|
background: none;
|
|
cursor: pointer;
|
|
transition: color 0.25s ease-in-out;
|
|
transition: background 0.25s ease-in-out;
|
|
}
|
|
|
|
.Button_white {
|
|
border: 1px solid #fff;
|
|
color: #fff;
|
|
}
|
|
|
|
.Button_white:hover {
|
|
color: #000;
|
|
background: #fff;
|
|
}
|
|
|
|
.Button_black {
|
|
border: 1px solid #000;
|
|
color: #000;
|
|
}
|
|
|
|
.Button_black:hover {
|
|
color: #fff;
|
|
background: #000;
|
|
}
|
|
|
|
.Button_unobtrusive {
|
|
padding: 0;
|
|
color: #000;
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
opacity: 1;
|
|
transition: opacity 0.25s ease-in-out;
|
|
outline: none;
|
|
}
|
|
|
|
.Button_unobtrusive:hover {
|
|
opacity: 0.35;
|
|
}
|
|
|
|
.Button_unobtrusive:focus {
|
|
outline: none;
|
|
} |