54 lines
757 B
CSS
54 lines
757 B
CSS
|
.noselect {
|
||
|
user-select: none;
|
||
|
-webkit-user-select: none;
|
||
|
-moz-user-select: none;
|
||
|
-ms-user-select: none;
|
||
|
-webkit-tap-highlight-color: transparent;
|
||
|
}
|
||
|
|
||
|
.nolist {
|
||
|
list-style: none;
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
|
||
|
li {
|
||
|
display: inline-block;
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.nolink {
|
||
|
display: inline-block;
|
||
|
color: inherit;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
.nolink-active {
|
||
|
display: inline-block;
|
||
|
color: inherit;
|
||
|
text-decoration: none;
|
||
|
|
||
|
&:hover {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.nobutton {
|
||
|
background: none;
|
||
|
border: none;
|
||
|
font-size: 1rem;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
.nobar {
|
||
|
scrollbar-width: none;
|
||
|
-mis-overflow-style: none;
|
||
|
|
||
|
&::-webkit-scrollbar {
|
||
|
background: transparent;
|
||
|
width: 0px;
|
||
|
height: 0px;
|
||
|
}
|
||
|
}
|