mirror of
https://github.com/piskelapp/piskel.git
synced 2023-08-10 21:12:52 +03:00
58 lines
649 B
CSS
58 lines
649 B
CSS
body {
|
|
background: #1D1D1D;
|
|
}
|
|
|
|
/* Browser fixes */
|
|
::-ms-clear {
|
|
display: none;
|
|
}
|
|
|
|
.allow-user-select {
|
|
-webkit-touch-callout: initial;
|
|
-webkit-user-select: initial;
|
|
-khtml-user-select: initial;
|
|
-moz-user-select: initial;
|
|
-ms-user-select: initial;
|
|
user-select: initial;
|
|
}
|
|
|
|
.no-overflow {
|
|
overflow : hidden;
|
|
}
|
|
|
|
.image-link {
|
|
color : gold;
|
|
}
|
|
|
|
.pull-top,
|
|
.pull-right,
|
|
.pull-bottom,
|
|
.pull-left {
|
|
position:absolute;
|
|
}
|
|
|
|
.pull-top {
|
|
top:0;
|
|
}
|
|
|
|
.pull-right {
|
|
right:0;
|
|
}
|
|
|
|
.pull-bottom {
|
|
bottom:0;
|
|
}
|
|
|
|
.pull-left {
|
|
left:0;
|
|
}
|
|
|
|
.uppercase {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.checkbox-fix {
|
|
vertical-align: -2px;
|
|
margin-left: 0;
|
|
}
|