

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  src: url(../fonts/Roboto-Light.ttf) format('woff2');
}

body {
    padding: 0px;
    margin: 0px;
    font-family: 'Roboto';
}

.toolbar {
    width: 70px;
    height: 100%;
    background: #fff;
    border-right: 1px solid #ccc;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 10;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.255);
}

.login-form {
    display: none;
    position: fixed;
    left: 70px;
    top: 0px;
    z-index: 10;
    padding: 20px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.255);
    width: 100%;
}

.login-form.error input {
    border-color: red;
}

.login-form i {
    font-size: 40px;
    color: #ccc;
    vertical-align: middle;
    margin-right: 10px;
}

.login-form  input {
    border: 1px solid #ccc;
    padding: 10px;
    margin-right: 5px;
}

.login-form  button {
    padding: 8px;
}

#trash {
    position: fixed;
    bottom: 10px;
    left: 90px;
    z-index: 10;
    font-size: 40px;
    color: #aaa;
    border: 1px solid #ccc;
    width: 80px;
    height: 65px;
    border-radius: 5px;
    text-align: center;
    padding-top: 15px;
}

.main-canvas {
    position: fixed;
    top: 0px;
    left: 0px;
}

.main-canvas.selection-mode .node-container {
    opacity: .2;
}

.main-canvas.selection-mode .node-container.selected {
    opacity: 1;
}

canvas {
    background: #fff;
}


.toolbar-app-name {
    font-size: 40px;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 20px;
    color: blueviolet;
    opacity: .5;
    cursor: pointer;
}

.toolbar-control,
.toolbar-palette-element {
    text-align: center;
    padding: 5px;
    cursor: pointer;
    user-select: none;
    margin-bottom: 5px;
    border-radius: 5px;
}

.toolbar-control {
    bottom: 10px;
    left: 15px;
    position: absolute;
}

.toolbar-palette-element:hover {
    background: #f6f6f6;
}

.toolbar-control i,
.toolbar-palette-element i {
    color: #888;
    font-size: 30px;
}


.toolbar-control .toolbar-control-label,
.toolbar-palette-element .toolbar-palette-element-label {
    font-size: 10px;
    margin-top: 5px;
}


.node-container {
    position: fixed;
    user-select: none;
    cursor: pointer;
}


/* Bookmark */
.node-type-bookmark img,
.node-type-bookmark i {
    margin-right: 3px;
}

.node-type-bookmark img {
    margin-bottom: -3px;
    display: inline-block;
}

.node-type-bookmark input {
    display: inline-block;
    z-index: 100;
    background: #fff;
    width: 100px;
}

/* Space */
.node-type-space {
    text-align: center;
    padding: 5px;
}

.node-type-space i {
    margin: 5px;
    display: block;
    font-size: 30px;
}

.node-type-space:hover {
    background: #f6f6f6;
}

.node-type-space input {
    border: 0px;
    outline: none;
    padding: 0px;
    margin: 0px;
    font-family: 'Roboto';
    font-size: 16px;
    width: 80px;
    text-align: center;
}



/* Label */
.node-type-label {
    font-size: 14px;
}

.node-type-label input {
    border: 0px;
    outline: none;
    padding: 0px;
    margin: 0px;
    font-family: 'Roboto';
    font-size: 14px;
}

/* Title */
.node-type-title {
    font-size: 22px;
}

.node-type-title input {
    border: 0px;
    outline: none;
    padding: 0px;
    margin: 0px;
    font-family: 'Roboto';
    font-size: 22px;
}

/* Note */
.node-type-note .note-title {
    min-width: 250px;
    background: #e7bd1a;
    padding: 3px;
    font-size: 12px;
    outline: none;
    border: 1px solid #e7bd1a;
    font-family: 'Roboto';
    font-size: 14px;
}

.node-type-note .note-content {
    background: yellow;
    min-width: 250px;
    padding: 3px;
    border: 1px solid #e7bd1a;
    white-space: pre-wrap;
    outline: none;
    display: block;
    font-family: 'Roboto';
    font-size: 16px;
}