mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-05 18:26:45 -05:00
restructuring folders
This commit is contained in:
46
app/Fragments/Button/style.module.scss
Normal file
46
app/Fragments/Button/style.module.scss
Normal file
@@ -0,0 +1,46 @@
|
||||
.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;
|
||||
}
|
||||
Reference in New Issue
Block a user