mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2024-04-21 12:32:08 +00:00
34 lines
502 B
CSS
34 lines
502 B
CSS
.pointer {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.hidden{
|
|
position:absolute!important;
|
|
left:-10000px!important;
|
|
top:auto!important;
|
|
width:1px!important;
|
|
height:1px!important;
|
|
overflow:hidden!important;
|
|
}
|
|
|
|
.no-select {
|
|
-webkit-touch-callout: none;
|
|
-webkit-user-select: none;
|
|
-khtml-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
.center{
|
|
text-align: center;
|
|
}
|
|
|
|
.full-width {
|
|
width: 100%;
|
|
}
|
|
|
|
.flex {
|
|
display: flex;
|
|
}
|