memo/client/css/style.css

953 lines
18 KiB
CSS
Raw Normal View History

2022-04-14 09:21:17 +03:00
:root {
--primary-color: #59ffac;
--secondary-color: #d8604c;
--background-color: #fff;
--board-background-color: #eee8;
--text-color: #1c2020;
2019-07-19 17:35:20 +03:00
}
2011-03-10 08:20:27 -05:00
2019-07-19 17:35:20 +03:00
@font-face {
2022-04-14 09:21:17 +03:00
font-family: "geomanistregular";
src: url("/fonts/geomanist/geomanist-book-webfont.woff2") format("woff2"),
url("/fonts/geomanist/geomanist-book-webfont.woff") format("woff");
font-weight: normal;
font-style: normal;
2019-07-19 17:35:20 +03:00
}
2011-03-10 08:20:27 -05:00
2019-07-19 17:35:20 +03:00
@font-face {
2022-04-14 09:21:17 +03:00
font-family: "geomanistitalic";
src: url("/fonts/geomanist/geomanist-book-italic-webfont.woff2") format("woff2"),
url("/fonts/geomanist/geomanist-book-italic-webfont.woff") format("woff");
font-weight: normal;
font-style: normal;
2019-07-19 17:35:20 +03:00
}
@font-face {
2022-04-14 09:21:17 +03:00
font-family: "ubuntulight";
src: url("/fonts/ubuntu/ubuntu-l-webfont.woff2") format("woff2"),
url("/fonts/ubuntu/ubuntu-l-webfont.woff") format("woff");
font-weight: normal;
font-style: normal;
2019-07-19 17:35:20 +03:00
}
2019-07-19 17:35:20 +03:00
@font-face {
2022-04-14 09:21:17 +03:00
font-family: "ubuntulight_italic";
src: url("/fonts/ubuntu/ubuntu-li-webfont.woff2") format("woff2"),
url("/fonts/ubuntu/ubuntu-li-webfont.woff") format("woff");
font-weight: normal;
font-style: normal;
2019-07-19 17:35:20 +03:00
}
2019-07-19 17:35:20 +03:00
@font-face {
2022-04-14 09:21:17 +03:00
font-family: "ubuntumedium";
src: url("/fonts/ubuntu/ubuntu-m-webfont.woff2") format("woff2"),
url("/fonts/ubuntu/ubuntu-m-webfont.woff") format("woff");
font-weight: normal;
font-style: normal;
2019-07-19 17:35:20 +03:00
}
2019-07-19 17:35:20 +03:00
body {
2022-04-14 09:21:17 +03:00
font-family: "ubuntulight", Verdana, Geneva, Tahoma, sans-serif;
font-size: 16px;
color: var(--text-color);
padding: 0;
margin: 0;
user-select: none;
-o-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
background: url("/images/backgrounds/kiwi.jpg") no-repeat scroll center center / cover;
min-height: 100vh;
}
a,
a:visited {
color: var(--primary-color);
text-decoration: none;
}
a:hover,
a:focus,
a:active {
color: var(--secondary-color);
text-decoration: underline;
2019-07-19 17:35:20 +03:00
}
#header-bar {
2022-04-14 09:21:17 +03:00
background: linear-gradient(
180deg,
rgb(255, 255, 255) 0%,
rgba(255, 255, 255, 0.7553221117548582) 45%,
rgb(255, 255, 255, 0) 100%
);
height: 100px;
display: block;
width: 100%;
position: absolute;
z-index: 0;
}
2022-04-14 09:21:17 +03:00
2019-07-19 17:35:20 +03:00
#colibris-menu,
#archipel {
2022-04-14 09:21:17 +03:00
background: #5a696b;
height: 22px;
2019-07-19 17:35:20 +03:00
}
#archipel .archipel__islands a::before {
2022-04-14 09:21:17 +03:00
font-weight: 400;
font-family: sans-serif;
content: "";
display: inline-block;
margin-right: 0;
2019-07-19 17:35:20 +03:00
}
#archipel .archipel__islands a:hover,
#archipel .archipel__islands a:focus,
2022-04-14 09:21:17 +03:00
#archipel .archipel__islands a:active {
color: var(--primary-color);
2019-07-19 17:35:20 +03:00
}
.social-links a::before {
width: 16px;
padding-right: 0;
margin-right: 0;
}
.main-header {
2022-04-14 09:21:17 +03:00
display: flex;
align-content: space-around;
justify-content: space-between;
align-items: center;
z-index: 1;
position: relative;
}
.title {
2022-04-14 09:21:17 +03:00
display: flex;
align-content: space-around;
align-items: center;
2019-07-19 17:35:20 +03:00
}
.logo {
2022-04-14 09:21:17 +03:00
width: 120px;
2019-07-19 17:35:20 +03:00
}
.base-line {
2022-04-14 09:21:17 +03:00
font-family: "geomanistitalic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
"Open Sans", "Helvetica Neue", sans-serif;
color: var(--text-color);
font-size: 16px;
margin-left: 1em;
2019-07-19 17:35:20 +03:00
}
.container {
2022-04-14 09:21:17 +03:00
max-width: 1140px;
margin: 0 auto;
2019-07-19 17:35:20 +03:00
}
2019-07-19 22:35:33 +03:00
.container-fluid {
2022-04-14 09:21:17 +03:00
margin: 1em;
2019-07-19 22:35:33 +03:00
}
.board-container {
2022-04-14 09:21:17 +03:00
margin: 1em auto;
width: 100%;
2019-07-19 22:35:33 +03:00
}
.actions a {
2022-04-14 09:21:17 +03:00
font-weight: bold;
text-transform: uppercase;
font-family: "geomanistregular", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
"Open Sans", "Helvetica Neue", sans-serif;
margin-left: 1em;
transition: color ease-out 0.2s;
color: var(--text-color);
2019-07-19 22:35:33 +03:00
}
.actions a:hover {
2022-04-14 09:21:17 +03:00
text-decoration: none;
color: var(--primary-color);
2019-07-19 22:35:33 +03:00
}
#smallify .fa-search-plus ~ .big {
2022-04-14 09:21:17 +03:00
display: inline-block;
2019-07-19 22:35:33 +03:00
}
#smallify .fa-search-plus ~ .big ~ .small {
2022-04-14 09:21:17 +03:00
display: none;
2019-07-19 22:35:33 +03:00
}
#smallify .fa-search-minus ~ .big {
2022-04-14 09:21:17 +03:00
display: none;
2019-07-19 22:35:33 +03:00
}
#smallify .fa-search-minus ~ .big ~ .small {
2022-04-14 09:21:17 +03:00
display: inline-block;
2019-07-19 22:35:33 +03:00
}
#full-page .fa-expand ~ .full-screen {
2022-04-14 09:21:17 +03:00
display: inline-block;
2019-07-19 22:35:33 +03:00
}
#full-page .fa-expand ~ .full-screen ~ .contain-screen {
2022-04-14 09:21:17 +03:00
display: none;
2019-07-19 22:35:33 +03:00
}
#full-page .fa-compress ~ .full-screen {
2022-04-14 09:21:17 +03:00
display: none;
2019-07-19 22:35:33 +03:00
}
#full-page .fa-compress ~ .full-screen ~ .contain-screen {
2022-04-14 09:21:17 +03:00
display: inline-block;
2019-07-19 22:35:33 +03:00
}
.clearfix {
2022-04-14 09:21:17 +03:00
clear: both;
2019-07-19 22:35:33 +03:00
}
2011-03-10 08:20:27 -05:00
#board {
2022-04-14 09:21:17 +03:00
position: relative;
background-color: var(--board-background-color);
height: 100%;
-moz-box-shadow: inset 1px 1px 3px #999;
box-shadow: inset 1px 1px 3px #999;
2011-03-10 08:20:27 -05:00
}
.board-outline {
2022-04-14 09:21:17 +03:00
border: solid #ddda 6px;
display: block;
height: 466px;
box-shadow: 1px 1px 1px #aaa;
margin: 0 auto;
2011-03-10 08:20:27 -05:00
}
#board-doodles {
2022-04-14 09:21:17 +03:00
width: 100%;
height: 100%;
position: absolute;
display: inline;
opacity: 0.035;
background-image: url("/images/scribbles2.png");
2011-03-10 08:20:27 -05:00
}
.card-icon {
2022-04-14 09:21:17 +03:00
display: none;
position: absolute;
top: 3%;
left: 82%;
opacity: 0.3;
width: 16px;
height: 16px;
2011-03-10 08:20:27 -05:00
}
.card-icon-hover {
2022-04-14 09:21:17 +03:00
opacity: 0.9;
2011-03-10 08:20:27 -05:00
}
2019-07-19 17:35:20 +03:00
.card-edit-form,
.card-edit-form input,
.card-edit-form textarea {
2022-04-14 09:21:17 +03:00
border: none;
font-size: inherit;
font-weight: inherit;
background-color: inherit;
font-family: inherit;
text-align: center;
padding: 0;
margin: 0;
outline-width: 0;
overflow: hidden;
resize: none;
width: 100%;
color: #330066;
color: #666;
2011-03-10 08:20:27 -05:00
}
.board-table {
2022-04-14 09:21:17 +03:00
position: absolute;
top: 0px;
left: 0px;
height: 100%;
width: 100%;
2011-03-10 08:20:27 -05:00
}
2019-07-19 17:35:20 +03:00
.board-table .col {
2022-04-14 09:21:17 +03:00
text-align: center;
vertical-align: top;
height: 100%;
background-image: url("../images/green-board-line.png");
background-repeat: repeat-y;
background-position: left top;
2011-03-10 08:20:27 -05:00
}
2019-07-19 17:35:20 +03:00
.board-table .first {
2022-04-14 09:21:17 +03:00
border-left: none;
text-align: center;
vertical-align: top;
height: 100%;
background-image: none;
2011-03-10 08:20:27 -05:00
}
2019-07-19 17:35:20 +03:00
h1,
h1 a {
2022-04-14 09:21:17 +03:00
color: #b6b6b6;
padding: 0px;
margin: 0px;
margin-left: 1px;
font-weight: normal;
font-size: 15px;
padding-top: 14px;
letter-spacing: +1px;
font-family: "geomanistregular", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
"Open Sans", "Helvetica Neue", sans-serif;
text-decoration: none;
2011-03-10 08:20:27 -05:00
}
h2 {
2022-04-14 09:21:17 +03:00
font-family: "geomanistregular", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
"Open Sans", "Helvetica Neue", sans-serif;
color: var(--text-color);
font-size: 18px;
2019-07-19 17:35:20 +03:00
}
2011-03-10 08:20:27 -05:00
.bottom-icon {
2022-04-14 09:21:17 +03:00
padding: 5px;
opacity: 0.4;
2011-03-10 08:20:27 -05:00
}
.bottom-icon:hover {
2022-04-14 09:21:17 +03:00
padding: 5px;
opacity: 0.6;
}
.faded-icon {
2022-04-14 09:21:17 +03:00
opacity: 0.4;
2011-03-10 08:20:27 -05:00
}
.faded-icon:hover {
2022-04-14 09:21:17 +03:00
opacity: 0.6;
}
2011-03-10 08:20:27 -05:00
#add-col {
2022-04-14 09:21:17 +03:00
position: absolute;
right: 3px;
top: 200px;
display: none;
opacity: 0.15;
2011-03-10 08:20:27 -05:00
}
2019-07-19 17:35:20 +03:00
2011-03-10 08:20:27 -05:00
#add-col:hover {
2022-04-14 09:21:17 +03:00
opacity: 0.5;
2011-03-10 08:20:27 -05:00
}
#delete-col {
2022-04-14 09:21:17 +03:00
position: absolute;
right: 3px;
top: 224px;
display: none;
opacity: 0.15;
2011-03-10 08:20:27 -05:00
}
2019-07-19 17:35:20 +03:00
2011-03-10 08:20:27 -05:00
#delete-col:hover {
2022-04-14 09:21:17 +03:00
opacity: 0.5;
2011-03-10 08:20:27 -05:00
}
#config-dropdown {
2022-04-14 09:21:17 +03:00
border: solid #666 5px;
width: 200px;
height: 34px;
border-radius: 15px;
background-color: #888;
box-shadow: 0px 0px 10px #444;
padding: 2px;
display: none;
2011-03-10 08:20:27 -05:00
}
.config-dropdown-icon {
2022-04-14 09:21:17 +03:00
padding: 5px;
opacity: 0.5;
2011-03-10 08:20:27 -05:00
}
.names {
2022-04-14 09:21:17 +03:00
color: var(--text-color);
letter-spacing: 4px;
font-family: "geomanistregular", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
"Open Sans", "Helvetica Neue", sans-serif;
font-size: 13px;
2011-03-10 08:20:27 -05:00
}
.names p {
2022-04-14 09:21:17 +03:00
padding: 0;
margin: 0;
2011-03-10 08:20:27 -05:00
}
.names ul {
2022-04-14 09:21:17 +03:00
list-style: none;
margin-top: 4px;
margin-bottom: 4px;
2011-03-10 08:20:27 -05:00
}
#yourname-li {
2022-04-14 09:21:17 +03:00
color: #888;
2011-03-10 08:20:27 -05:00
}
.names input {
2022-04-14 09:21:17 +03:00
padding: 0;
border: none;
outline: 0;
width: 100px;
background: -webkit-gradient(linear, left top, left 25, from(#ffffff), color-stop(4%, #eeeeee), to(#ffffff));
background: -moz-linear-gradient(top, #ffffff, #eeeeee 1px, #ffffff 25px);
background: none;
border-radius: 10px;
color: #666;
text-align: right;
font-family: "geomanistregular", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
"Open Sans", "Helvetica Neue", sans-serif;
font-size: 13px;
letter-spacing: 4px;
margin: 0;
position: relative;
2011-03-10 08:20:27 -05:00
}
.names input:hover {
2022-04-14 09:21:17 +03:00
outline: 0;
width: 100px;
background: -webkit-gradient(linear, left top, left 25, from(#ffffff), color-stop(4%, #eeeeee), to(#ffffff));
background: -moz-linear-gradient(top, #ffffff, #eeeeee 1px, #ffffff 25px);
background: none;
box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px;
border-radius: 10px;
color: #aaa;
text-align: right;
font-family: "geomanistregular", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
"Open Sans", "Helvetica Neue", sans-serif;
font-size: 13px;
letter-spacing: 4px;
margin: 0;
2011-03-10 08:20:27 -05:00
}
.names .focused {
2022-04-14 09:21:17 +03:00
color: #444;
2011-03-10 08:20:27 -05:00
}
.you-text {
2022-04-14 09:21:17 +03:00
letter-spacing: 2px;
2011-03-10 08:20:27 -05:00
}
#user-icon {
2022-04-14 09:21:17 +03:00
vertical-align: text-top;
position: relative;
left: 0px;
2011-03-10 08:20:27 -05:00
}
.sticker {
2022-04-14 09:21:17 +03:00
padding-top: 0px;
padding-left: 2px;
display: inline-block;
width: 11px;
height: 11px;
background-repeat: no-repeat;
2011-03-10 08:20:27 -05:00
}
.stickers {
2022-04-14 09:21:17 +03:00
display: inline-block;
margin: 0 1em;
2011-03-10 08:20:27 -05:00
}
#sticker-red {
2022-04-14 09:21:17 +03:00
background-image: url("../images/stickers/sticker-red.png");
}
2019-07-19 17:35:20 +03:00
#sticker-blue {
2022-04-14 09:21:17 +03:00
background-image: url("../images/stickers/sticker-blue.png");
}
2019-07-19 17:35:20 +03:00
#sticker-yellow {
2022-04-14 09:21:17 +03:00
background-image: url("../images/stickers/sticker-yellow.png");
}
2019-07-19 17:35:20 +03:00
#sticker-green {
2022-04-14 09:21:17 +03:00
background-image: url("../images/stickers/sticker-green.png");
}
2019-07-19 17:35:20 +03:00
#sticker-pink {
2022-04-14 09:21:17 +03:00
background-image: url("../images/stickers/sticker-pink.png");
}
2019-07-19 17:35:20 +03:00
#sticker-lightblue {
2022-04-14 09:21:17 +03:00
background-image: url("../images/stickers/sticker-lightblue.png");
}
2019-07-19 17:35:20 +03:00
#sticker-orange {
2022-04-14 09:21:17 +03:00
background-image: url("../images/stickers/sticker-orange.png");
}
2019-07-19 17:35:20 +03:00
#sticker-purple {
2022-04-14 09:21:17 +03:00
background-image: url("../images/stickers/sticker-purple.png");
}
2019-07-19 17:35:20 +03:00
2014-10-12 12:19:52 -04:00
#sticker-gold {
2022-04-14 09:21:17 +03:00
background-image: url("../images/stickers/sticker-gold.png");
2014-10-12 12:19:52 -04:00
}
2019-07-19 17:35:20 +03:00
#sticker-silverstar {
2022-04-14 09:21:17 +03:00
background-image: url("../images/stickers/sticker-silverstar.png");
}
2019-07-19 17:35:20 +03:00
2014-10-12 12:19:52 -04:00
#sticker-bluestar {
2022-04-14 09:21:17 +03:00
background-image: url("../images/stickers/sticker-bluestar.png");
2014-10-12 12:19:52 -04:00
}
2019-07-19 17:35:20 +03:00
2014-10-12 12:19:52 -04:00
#sticker-redstar {
2022-04-14 09:21:17 +03:00
background-image: url("../images/stickers/sticker-redstar.png");
2014-10-12 12:19:52 -04:00
}
2019-07-19 17:35:20 +03:00
#addsticker {
2022-04-14 09:21:17 +03:00
background-image: url("../images/icons/iconic/raster/black/plus_8x8.png");
background-position: 2px 2px;
opacity: 0.3;
2022-04-14 09:21:17 +03:00
display: inline-block;
width: 11px;
height: 11px;
background-repeat: no-repeat;
}
2019-07-19 17:35:20 +03:00
#addsticker:hover {
2022-04-14 09:21:17 +03:00
opacity: 0.7;
}
2019-07-19 17:35:20 +03:00
#nosticker {
2022-04-14 09:21:17 +03:00
background-image: url("../images/stickers/sticker-deletestar.png");
}
2011-03-10 08:20:27 -05:00
#sticker-nostar {
2022-04-14 09:21:17 +03:00
position: relative;
top: 3px;
opacity: 0.5;
2011-03-10 08:20:27 -05:00
}
#sticker-redstar {
2022-04-14 09:21:17 +03:00
top: 1px;
2011-03-10 08:20:27 -05:00
}
/* Stuff for landing page */
h1.home {
2022-04-14 09:21:17 +03:00
font-size: 100px;
font-family: "geomanistregular", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
"Open Sans", "Helvetica Neue", sans-serif;
color: var(--primary-color);
opacity: 0.8;
padding: 0;
margin: 0;
text-align: center;
2011-03-10 08:20:27 -05:00
}
.home {
2022-04-14 09:21:17 +03:00
font-size: 30px;
font-family: "geomanistregular", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
"Open Sans", "Helvetica Neue", sans-serif;
color: var(--text-color);
opacity: 1;
padding: 0;
margin: 0;
text-align: center;
2019-07-19 17:35:20 +03:00
}
form.home {
2022-04-14 09:21:17 +03:00
margin-bottom: 2em;
2011-03-10 08:20:27 -05:00
}
p.home a {
2022-04-14 09:21:17 +03:00
color: var(--primary-color);
2011-03-10 08:20:27 -05:00
2022-04-14 09:21:17 +03:00
text-decoration: none;
2011-03-10 08:20:27 -05:00
}
p.small {
2022-04-14 09:21:17 +03:00
font-size: 22px;
2011-03-10 08:20:27 -05:00
}
#video {
2022-04-14 09:21:17 +03:00
height: 450px;
width: 1000px;
padding-top: 100px;
2011-03-10 08:20:27 -05:00
}
input.text {
2022-04-14 09:21:17 +03:00
width: 230px;
background: none;
padding: 6px;
margin-bottom: 10px;
border: none;
font-size: 30px;
font-family: "geomanistregular", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
"Open Sans", "Helvetica Neue", sans-serif;
color: var(--primary-color);
text-align: center;
border-bottom: dashed 3px var(--primary-color);
2011-03-10 08:20:27 -05:00
}
#go:hover {
2022-04-14 09:21:17 +03:00
box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.2);
text-decoration: none;
background-color: var(--text-color);
color:var(--primary-color)
}
2011-03-10 08:20:27 -05:00
#go {
2022-04-14 09:21:17 +03:00
display: inline-block;
background-color: var(--primary-color);
margin-left: 30px;
box-shadow: unset;
border: none;
padding: 2px 10px;
border-radius: 5px;
margin-bottom: 0px;
font-size: 25px;
text-transform: uppercase;
font-weight: bold;
transition: all ease-out 0.1s;
font-family: "geomanistregular", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
"Open Sans", "Helvetica Neue", sans-serif;
color: var(--text-color);
}
@media (max-width: 442px) {
2022-04-14 09:21:17 +03:00
#go {
margin-left: 0;
}
2011-03-10 08:20:27 -05:00
}
.notice-bar {
2022-04-14 09:21:17 +03:00
padding: 0;
margin: 1em 0 0 0;
text-align: center;
color: #e33d8a;
text-transform: uppercase;
font-weight: bold;
}
.notice-bar a {
2022-04-14 09:21:17 +03:00
color: #333;
}
2011-10-10 18:35:32 -04:00
#marker {
2022-04-14 09:21:17 +03:00
position: absolute;
bottom: 0;
right: 200px;
z-index: 1;
2011-10-11 21:55:31 -04:00
}
#eraser {
2022-04-14 09:21:17 +03:00
position: absolute;
bottom: 0;
right: 70px;
z-index: 1;
2011-10-10 18:35:32 -04:00
}
2013-12-08 09:18:08 -05:00
.card-hover-draggable {
2022-04-14 09:21:17 +03:00
box-shadow: inset 0 0 40px rgba(128, 128, 256, 0.2);
background-color: rgba(128, 128, 256, 0.1);
2014-09-13 09:33:50 -04:00
}
.config {
2022-04-14 09:21:17 +03:00
position: fixed;
right: 18px;
top: 4px;
}
.trash {
2022-04-14 09:21:17 +03:00
position: fixed;
right: 18px;
bottom: 4px;
}
.filler {
2022-04-14 09:21:17 +03:00
right: 0;
bottom: 0;
position: absolute;
text-align: right;
}
2022-04-14 09:21:17 +03:00
.active-connections,
.credits {
color: #999;
margin: 1em 0;
}
.credits {
display: none;
2014-09-30 08:22:53 -04:00
}
/* states and images */
2019-07-19 17:35:20 +03:00
.ui-icon {
2022-04-14 09:21:17 +03:00
width: 16px;
height: 16px;
background-image: url(../images/ui-icons_222222_256x240.png);
2019-07-19 17:35:20 +03:00
}
.ui-widget-content .ui-icon {
2022-04-14 09:21:17 +03:00
background-image: url(../images/ui-icons_222222_256x240.png);
2019-07-19 17:35:20 +03:00
}
.ui-widget-header .ui-icon {
2022-04-14 09:21:17 +03:00
background-image: url(../images/ui-icons_222222_256x240.png);
2019-07-19 17:35:20 +03:00
}
.ui-state-default .ui-icon {
2022-04-14 09:21:17 +03:00
background-image: url(../images/ui-icons_888888_256x240.png);
2016-09-13 09:06:15 +02:00
}
2019-07-19 17:35:20 +03:00
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
2022-04-14 09:21:17 +03:00
background-image: url(../images/ui-icons_454545_256x240.png);
2019-07-19 17:35:20 +03:00
}
.ui-state-active .ui-icon {
2022-04-14 09:21:17 +03:00
background-image: url(../images/ui-icons_454545_256x240.png);
2019-07-19 17:35:20 +03:00
}
.ui-state-highlight .ui-icon {
2022-04-14 09:21:17 +03:00
background-image: url(../images/ui-icons_2e83ff_256x240.png);
2019-07-19 17:35:20 +03:00
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
2022-04-14 09:21:17 +03:00
background-image: url(../images/ui-icons_cd0a0a_256x240.png);
2019-07-19 17:35:20 +03:00
}
.ui-resizable {
2022-04-14 09:21:17 +03:00
position: relative;
2019-07-19 17:35:20 +03:00
}
.ui-resizable-handle {
2022-04-14 09:21:17 +03:00
position: absolute;
font-size: 0.1px;
z-index: 99999;
display: block;
2019-07-19 17:35:20 +03:00
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
2022-04-14 09:21:17 +03:00
display: none;
2019-07-19 17:35:20 +03:00
}
.ui-resizable-n {
2022-04-14 09:21:17 +03:00
cursor: n-resize;
height: 7px;
width: 100%;
top: -5px;
left: 0;
2019-07-19 17:35:20 +03:00
}
.ui-resizable-s {
2022-04-14 09:21:17 +03:00
cursor: s-resize;
height: 7px;
width: 100%;
bottom: -5px;
left: 0;
2019-07-19 17:35:20 +03:00
}
.ui-resizable-e {
2022-04-14 09:21:17 +03:00
cursor: e-resize;
width: 7px;
right: -5px;
top: 0;
height: 100%;
2019-07-19 17:35:20 +03:00
}
.ui-resizable-w {
2022-04-14 09:21:17 +03:00
cursor: w-resize;
width: 7px;
left: -5px;
top: 0;
height: 100%;
2019-07-19 17:35:20 +03:00
}
.ui-resizable-se {
2022-04-14 09:21:17 +03:00
cursor: se-resize;
width: 12px;
height: 12px;
right: 1px;
bottom: 1px;
2019-07-19 17:35:20 +03:00
}
.ui-resizable-sw {
2022-04-14 09:21:17 +03:00
cursor: sw-resize;
width: 9px;
height: 9px;
left: -5px;
bottom: -5px;
2019-07-19 17:35:20 +03:00
}
.ui-resizable-nw {
2022-04-14 09:21:17 +03:00
cursor: nw-resize;
width: 9px;
height: 9px;
left: -5px;
top: -5px;
2019-07-19 17:35:20 +03:00
}
.ui-resizable-ne {
2022-04-14 09:21:17 +03:00
cursor: ne-resize;
width: 9px;
height: 9px;
right: -5px;
top: -5px;
2019-07-19 17:35:20 +03:00
}
.ui-icon-gripsmall-diagonal-se {
2022-04-14 09:21:17 +03:00
background-position: -64px -224px;
2019-07-19 17:35:20 +03:00
}
.export button,
.import * {
2022-04-14 09:21:17 +03:00
margin-right: 15px;
2019-07-19 17:35:20 +03:00
}
.content h1 {
2022-04-14 09:21:17 +03:00
font-family: "geomanistregular", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
"Open Sans", "Helvetica Neue", sans-serif;
color: var(--primary-color);
font-size: 22px;
}
2019-07-19 17:35:20 +03:00
.content * {
2022-04-14 09:21:17 +03:00
margin-top: 0;
margin-bottom: 0;
padding-top: 0;
padding-bottom: 0;
}
2019-07-19 17:35:20 +03:00
2022-04-14 09:21:17 +03:00
#revisions-list li > * {
cursor: pointer;
}
2019-07-19 17:35:20 +03:00
#revisions-list li img {
2022-04-14 09:21:17 +03:00
margin-left: 10px;
}
2019-07-19 17:35:20 +03:00
.active-connections {
2022-04-14 09:21:17 +03:00
float: left;
2019-07-19 17:35:20 +03:00
}
.credits {
2022-04-14 09:21:17 +03:00
text-align: center;
}
2019-07-19 22:35:33 +03:00
/* Responsive Video */
.video {
2022-04-14 09:21:17 +03:00
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
2019-07-19 22:35:33 +03:00
}
.video iframe,
.video object,
.video embed {
2022-04-14 09:21:17 +03:00
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
2019-07-19 22:35:33 +03:00
}
/* Close Button */
2022-04-14 09:21:17 +03:00
.box3 {
width: 25px;
right: 0px;
position: absolute;
margin: 5px;
2019-07-19 22:35:33 +03:00
}
svg {
2022-04-14 09:21:17 +03:00
display: block;
2019-07-19 22:35:33 +03:00
}
.close-x {
stroke: black;
fill: transparent;
stroke-linecap: round;
stroke-width: 5;
}
.pull-right {
2022-04-14 09:21:17 +03:00
float: right;
}
.post-it-actions {
display: flex;
}
a.add-post-it {
display: inline-block;
transition: color ease-out 0.2s;
color: var(--text-color);
}
a.add-post-it:hover {
color: var(--primary-color);
}
.add-post-it img {
width: 70px;
display: inline-block;
margin-left: -30px;
vertical-align: top;
}
.add-post-it .fa {
display: inline-block;
z-index: 1;
position: relative;
top: 9px;
left: 19px;
}
#site-wrapper {
position: relative;
width: 100%;
height:100vh;
overflow-x: hidden;
}
#site-canvas {
min-height: 100%;
position: relative;
-webkit-transform: translateX(0);
transform: translateX(0);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
-webkit-transition: 300ms ease all;
transition: 300ms ease all;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.show-nav #site-canvas {
-webkit-transform: translateX(-295px);
transform: translateX(-300px);
-webkit-transform: translate3d(-295px, 0, 0);
transform: translate3d(-295px, 0, 0);
}
#site-menu {
width: 270px;
height: 100%;
position: fixed;
top: 0;
bottom: 0;
right: -295px;
background: linear-gradient( 270deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.7553221117548582) 98%, rgba(255, 255, 255, 0) 100% );
padding: 15px;
z-index: 1;
}
#site-menu .close-link {
color: var(--text-color);
font-weight: bold;
text-transform: uppercase;
font-size: 12px;
}
#site-menu .close-link i {
font-size: 16px;
}
#site-menu .close-link:hover {
text-decoration: none;
}
.backgrounds {
display:grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 5px;
}
.backgrounds .bg {
max-width:100px;
width: 100%;
border: 1px solid transparent;
}
.backgrounds .bg:hover {
cursor:pointer;
}
.backgrounds .bg.selected {
border: 1px solid var(--primary-color);
}