mirror of
https://github.com/spacedeck/spacedeck-open.git
synced 2025-12-16 09:57:30 +01:00
initial commit.
This commit is contained in:
28
styles/lasso.scss
Normal file
28
styles/lasso.scss
Normal file
@@ -0,0 +1,28 @@
|
||||
@import "vars";
|
||||
@import "mixins";
|
||||
|
||||
#lasso {
|
||||
border-radius: $radius;
|
||||
@include backface-visibility(hidden);
|
||||
|
||||
background-color: rgba(40,140,215,0.125);
|
||||
position:absolute;
|
||||
z-index: 2500;
|
||||
pointer-events: none;
|
||||
opacity: 0;
|
||||
border: 1px solid rgba(255,255,255,0.5);
|
||||
|
||||
&:after{
|
||||
border-radius: $radius;
|
||||
border: 1px dotted rgba(40,140,215,1);
|
||||
content: "";
|
||||
display: block;
|
||||
position: absolute;
|
||||
height: auto;
|
||||
width: auto;
|
||||
top: -1px;
|
||||
left: -1px;
|
||||
right: -1px;
|
||||
bottom: -1px;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user