initial commit

This commit is contained in:
Blue 2018-08-05 00:46:25 +03:00 committed by Юрий Губич
commit 4b60ece582
327 changed files with 28286 additions and 0 deletions

View file

@ -0,0 +1,4 @@
cmake_minimum_required(VERSION 2.8.12)
configure_file(main.css main.css)
configure_file(Liberation.ttf Liberation.ttf COPYONLY)

BIN
lorgar/css/Liberation.ttf Normal file

Binary file not shown.

47
lorgar/css/main.css Normal file
View file

@ -0,0 +1,47 @@
@font-face {
font-family: Liberation;
src: url(Liberation.ttf);
}
body {
margin: 0;
width: 100%;
height: 100%;
position: absolute;
overflow: hidden;
box-sizing: border-box;
}
html {
width: 100%;
height: 100%;
}
.non-selectable,
.non-selectable * {
-webkit-user-select: none;
-ms-user-select: none;
-moz-user-select: none;
user-select: none;
}
.hoverable {
}
.hoverable:hover {
background-image: linear-gradient(to bottom, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .2) 100%);
}
.draggable {
cursor: -webkit-grab;
cursor: -moz-grab;
cursor: -grab;
}
div.dragging ,
div.dragging .draggable {
cursor: -webkit-grabbing;
cursor: -moz-grabbing;
cursor: grabbing;
}