2021-06-23 08:19:35 +00:00
|
|
|
@import './skin';
|
|
|
|
@import './layout';
|
2018-10-19 15:17:02 +00:00
|
|
|
.type-reveal {
|
|
|
|
@extend %secret-button;
|
|
|
|
}
|
|
|
|
%secret-button {
|
2020-01-16 09:10:32 +00:00
|
|
|
position: relative;
|
2018-10-19 15:17:02 +00:00
|
|
|
}
|
|
|
|
%secret-button span {
|
2020-01-16 09:10:32 +00:00
|
|
|
visibility: hidden;
|
2018-10-19 15:17:02 +00:00
|
|
|
position: absolute;
|
|
|
|
}
|
2020-01-16 09:10:32 +00:00
|
|
|
%secret-button em {
|
|
|
|
margin-left: 22px;
|
|
|
|
}
|
|
|
|
%secret-button span::before {
|
|
|
|
@extend %with-visibility-show-mask, %as-pseudo;
|
|
|
|
background-color: $gray-500;
|
|
|
|
}
|
|
|
|
%secret-button input:checked + span::before {
|
|
|
|
@extend %with-visibility-hide-mask;
|
|
|
|
}
|