2018-07-17 18:17:43 +00:00
|
|
|
:root {
|
2018-09-14 18:55:32 +00:00
|
|
|
--color-bg: var(--background);
|
2018-07-18 15:28:10 +00:00
|
|
|
|
2018-09-14 22:53:56 +00:00
|
|
|
--color-menu: var(--f_high);
|
2018-09-14 18:55:32 +00:00
|
|
|
--color-menubg: var(--b_low);
|
2018-09-14 22:53:56 +00:00
|
|
|
--color-menuascent: var(--f_med);
|
2018-09-14 18:55:32 +00:00
|
|
|
|
|
|
|
--color-item: var(--f_high);
|
|
|
|
--color-itembg: var(--b_low);
|
2018-09-14 22:53:56 +00:00
|
|
|
--color-itemascent: var(--f_med);
|
2018-07-17 18:17:43 +00:00
|
|
|
|
2018-09-14 22:24:12 +00:00
|
|
|
--color-image: #fff; /*Text overlaying an image item*/
|
|
|
|
--color-imagedarken: #000; /*Overlay on image as text background */
|
2018-07-17 18:17:43 +00:00
|
|
|
|
2018-09-15 14:29:07 +00:00
|
|
|
--color-page-bg: #000;
|
|
|
|
--color-page-input: #111;
|
|
|
|
--color-page-i: #222; /*idle*/
|
|
|
|
--color-page-e: #333; /*enabled*/
|
|
|
|
--color-page-a: #666; /*ascent*/
|
|
|
|
|
2018-09-14 18:55:32 +00:00
|
|
|
--alpha-darken: 0.2;
|
2018-09-15 17:22:53 +00:00
|
|
|
--alpha-idleicon: 0.2;
|
2018-09-14 18:55:32 +00:00
|
|
|
--alpha-idle: 0.4;
|
2018-09-15 17:22:53 +00:00
|
|
|
--alpha-enabledicon: 0.4;
|
|
|
|
--alpha-enabled: 1.0;
|
2018-09-14 18:55:32 +00:00
|
|
|
--alpha-ascent: 1.0;
|
|
|
|
|
|
|
|
--size-menu: 150px;
|
2018-09-14 22:24:12 +00:00
|
|
|
--size-menu-item-sepv: 14px; /*vertical space between menu items*/
|
|
|
|
--size-menu-item-seph: 10px; /*horizontal space between menu item count and icon*/
|
|
|
|
--size-menu-itemgroup-sepv: 30px; /*vertical space between menu types (types to terms, terms to tags)*/
|
|
|
|
--size-menu-tag-sepv: 10px; /*space between tag items*/
|
2018-09-14 18:55:32 +00:00
|
|
|
|
|
|
|
--size-grid-gutter: 20px;
|
2018-07-17 18:17:43 +00:00
|
|
|
--size-grid-column: 350px;
|
|
|
|
|
|
|
|
--size-item-corner: 3px;
|
2018-09-14 22:24:12 +00:00
|
|
|
--size-item-elem-padding: 1em; /*vertical space between grid item internal elements (tags, notes, quotes etc)*/
|
|
|
|
--size-item-elem-sep: 0.75em; /*horizontal space between item element icon and element text (tag icon and tags)*/
|
2018-07-17 18:17:43 +00:00
|
|
|
|
|
|
|
--size-font-title: 1em;
|
|
|
|
--size-font-body: 0.8em;
|
2018-09-14 18:55:32 +00:00
|
|
|
--size-font-menutypes: 1em;
|
|
|
|
--size-font-menutags: 0.8em;
|
2018-09-14 22:24:12 +00:00
|
|
|
--size-font-bodytypes: 1em; /*font size of type icon/count*/
|
2018-07-17 18:17:43 +00:00
|
|
|
}
|
|
|
|
|
2018-07-22 19:45:04 +00:00
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2018-07-17 18:17:43 +00:00
|
|
|
html {
|
|
|
|
font-family: 'Monaco', 'Andale Mono', 'Deja Vu Sans Mono', 'Consolas', monospace;
|
2018-09-14 18:55:32 +00:00
|
|
|
background: var(--background);
|
2018-07-14 11:05:01 +00:00
|
|
|
padding: 0em;
|
2018-07-17 18:17:43 +00:00
|
|
|
margin: 0;
|
2018-07-23 13:20:03 +00:00
|
|
|
overflow-y: scroll;
|
2018-07-13 15:56:09 +00:00
|
|
|
}
|
2018-07-17 18:17:43 +00:00
|
|
|
body {
|
|
|
|
padding: 0em;
|
|
|
|
margin: 0;
|
|
|
|
}
|
2018-09-15 14:15:16 +00:00
|
|
|
::selection {
|
2018-09-15 14:29:07 +00:00
|
|
|
background: var(--color-bg);
|
|
|
|
}
|
|
|
|
.noselect {
|
|
|
|
/*noselect stops an unwanted selection visual on button click*/
|
|
|
|
-webkit-touch-callout: none; /* iOS Safari */
|
|
|
|
-webkit-user-select: none; /* Safari */
|
|
|
|
-khtml-user-select: none; /* Konqueror HTML */
|
|
|
|
-moz-user-select: none; /* Firefox */
|
|
|
|
-ms-user-select: none; /* Internet Explorer/Edge */
|
|
|
|
user-select: none; /* Non-prefixed version, currently
|
|
|
|
supported by Chrome and Opera */
|
2018-09-15 14:15:16 +00:00
|
|
|
}
|
2018-09-15 13:37:29 +00:00
|
|
|
|
2018-09-15 14:29:07 +00:00
|
|
|
/* MENU */
|
2018-07-16 12:38:07 +00:00
|
|
|
.menu {
|
2018-09-14 18:55:32 +00:00
|
|
|
padding-top: var(--size-grid-gutter);
|
2018-09-14 22:24:12 +00:00
|
|
|
background: var(--color-bg);
|
|
|
|
opacity: var(--alpha-idle);
|
2018-09-14 18:55:32 +00:00
|
|
|
width: var(--size-menu);
|
2018-07-17 18:17:43 +00:00
|
|
|
position: fixed;
|
2018-07-16 04:30:40 +00:00
|
|
|
height: 100%;
|
2018-07-17 18:17:43 +00:00
|
|
|
z-index: 100;
|
2018-07-16 04:30:40 +00:00
|
|
|
left: 0px;
|
|
|
|
top: 0px;
|
2018-09-14 22:24:12 +00:00
|
|
|
/*overflow-y: scroll;*/ /*allow menu to scroll on small screens*/
|
2018-07-16 12:38:07 +00:00
|
|
|
}
|
2018-07-18 10:12:02 +00:00
|
|
|
.menu:hover {
|
2018-09-14 22:24:12 +00:00
|
|
|
opacity: var(--alpha-ascent);
|
2018-07-16 12:38:07 +00:00
|
|
|
}
|
2018-09-14 18:55:32 +00:00
|
|
|
.menu::-webkit-scrollbar {
|
|
|
|
display: none;
|
2018-07-16 12:38:07 +00:00
|
|
|
}
|
2018-09-14 18:55:32 +00:00
|
|
|
.menu-itemgroup {
|
|
|
|
padding-bottom: var(--size-menu-itemgroup-sepv);
|
2018-07-17 18:17:43 +00:00
|
|
|
width: 100%;
|
2018-09-14 18:55:32 +00:00
|
|
|
float: left;
|
2018-07-17 14:09:23 +00:00
|
|
|
}
|
2018-07-16 12:38:07 +00:00
|
|
|
.menu-item {
|
2018-09-14 18:55:32 +00:00
|
|
|
padding-bottom: calc(var(--size-menu-item-sepv) / 2);
|
|
|
|
padding-top: calc(var(--size-menu-item-sepv) / 2);
|
|
|
|
font-size: var(--size-font-menutypes);
|
2018-09-14 22:24:12 +00:00
|
|
|
opacity: var(--alpha-idle);
|
|
|
|
color: var(--color-menu);
|
|
|
|
text-align: center;
|
2018-07-16 15:07:13 +00:00
|
|
|
margin: 0px auto;
|
2018-07-17 18:17:43 +00:00
|
|
|
width: 100%;
|
|
|
|
float: left;
|
2018-07-16 12:38:07 +00:00
|
|
|
}
|
2018-09-14 18:55:32 +00:00
|
|
|
.menu-item:hover {
|
|
|
|
color: var(--color-menuascent);
|
|
|
|
opacity: var(--alpha-ascent);
|
|
|
|
}
|
|
|
|
.menu-itemcount {
|
|
|
|
padding-right: calc(var(--size-menu-item-seph) / 2);
|
2018-07-17 18:17:43 +00:00
|
|
|
display: inline-block;
|
2018-07-16 15:07:13 +00:00
|
|
|
text-align: right;
|
2018-07-17 18:17:43 +00:00
|
|
|
float: left;
|
2018-07-16 15:07:13 +00:00
|
|
|
width: 50%;
|
2018-07-16 12:38:07 +00:00
|
|
|
}
|
2018-09-14 18:55:32 +00:00
|
|
|
.menu-itemicon {
|
|
|
|
margin-left: calc(var(--size-menu-item-seph) / 2);
|
|
|
|
margin-top: calc(var(--size-font-bodytypes) / 10);
|
|
|
|
width: calc(var(--size-font-bodytypes) * 1.25);
|
2018-07-17 18:17:43 +00:00
|
|
|
display: inline-block;
|
2018-07-16 12:38:07 +00:00
|
|
|
text-align: center;
|
2018-07-17 18:17:43 +00:00
|
|
|
float: left;
|
2018-07-16 12:38:07 +00:00
|
|
|
}
|
2018-09-14 18:55:32 +00:00
|
|
|
.menu-tagcontainer {
|
2018-07-17 18:17:43 +00:00
|
|
|
margin: 0 auto;
|
2018-07-16 15:07:13 +00:00
|
|
|
display: table;
|
|
|
|
}
|
2018-09-14 18:55:32 +00:00
|
|
|
.menu-tagicon {
|
|
|
|
padding-bottom: calc(var(--size-menu-item-sepv) / 2);
|
|
|
|
padding-top: calc(var(--size-menu-item-sepv) / 2);
|
|
|
|
font-size: var(--size-font-menutags);
|
2018-09-14 22:24:12 +00:00
|
|
|
opacity: var(--alpha-idle);
|
2018-09-14 18:55:32 +00:00
|
|
|
color: var(--color-menu);
|
2018-07-16 15:07:13 +00:00
|
|
|
display: table-row;
|
2018-07-16 12:38:07 +00:00
|
|
|
text-align: center;
|
2018-07-17 18:17:43 +00:00
|
|
|
width: 100%;
|
|
|
|
float: left;
|
2018-07-16 15:07:13 +00:00
|
|
|
}
|
|
|
|
.menu-tag {
|
2018-09-14 18:55:32 +00:00
|
|
|
padding-bottom: calc(var(--size-menu-tag-sepv) / 2);
|
|
|
|
padding-top: calc(var(--size-menu-tag-sepv) / 2);
|
|
|
|
font-size: var(--size-font-body);
|
2018-09-14 22:24:12 +00:00
|
|
|
opacity: var(--alpha-idle);
|
|
|
|
color: var(--color-menu);
|
2018-09-14 18:55:32 +00:00
|
|
|
width: 100%;
|
|
|
|
float: left;
|
|
|
|
clear: left;
|
2018-07-16 04:30:40 +00:00
|
|
|
}
|
2018-09-14 18:55:32 +00:00
|
|
|
.menu-tagcount {
|
|
|
|
padding-right: var(--size-menu-tag-sepv);
|
2018-07-16 15:07:13 +00:00
|
|
|
text-align: right;
|
2018-07-17 18:17:43 +00:00
|
|
|
float: left;
|
2018-07-16 15:07:13 +00:00
|
|
|
}
|
2018-09-14 18:55:32 +00:00
|
|
|
.menu-taglabel {
|
2018-07-16 15:07:13 +00:00
|
|
|
text-align: left;
|
2018-07-17 18:17:43 +00:00
|
|
|
float: left;
|
2018-07-16 15:07:13 +00:00
|
|
|
}
|
2018-09-14 18:55:32 +00:00
|
|
|
.menu-tag:hover {
|
|
|
|
opacity: var(--alpha-ascent);
|
2018-07-24 11:50:04 +00:00
|
|
|
}
|
2018-09-14 18:55:32 +00:00
|
|
|
.menu-tag:hover .menu-taglabel {
|
|
|
|
background-color: var(--color-itemascent);
|
2018-09-14 22:24:12 +00:00
|
|
|
color: var(--color-menubg);
|
2018-07-24 11:50:04 +00:00
|
|
|
}
|
2018-09-14 18:55:32 +00:00
|
|
|
.menu-tag:hover .menu-tagcount {
|
|
|
|
color: var(--color-itemascent);
|
2018-07-24 11:50:04 +00:00
|
|
|
}
|
|
|
|
|
2018-07-16 04:30:40 +00:00
|
|
|
.container {
|
2018-09-14 18:55:32 +00:00
|
|
|
background: var(--background);
|
|
|
|
margin-left: calc(var(--size-menu) + var(--size-grid-gutter));
|
|
|
|
margin-right: var(--size-grid-gutter);
|
2018-07-18 10:12:02 +00:00
|
|
|
}
|
2018-07-14 11:05:01 +00:00
|
|
|
.grid {
|
2018-09-14 18:55:32 +00:00
|
|
|
margin: var(--size-grid-gutter) auto;
|
2018-07-23 13:20:03 +00:00
|
|
|
-webkit-transition: opacity 1000ms linear;
|
|
|
|
transition: opacity 1000ms linear;
|
2018-07-14 10:07:08 +00:00
|
|
|
}
|
2018-07-14 11:05:01 +00:00
|
|
|
.grid:after {
|
2018-09-14 18:55:32 +00:00
|
|
|
/* clearfix (reset) */
|
2018-07-14 11:05:01 +00:00
|
|
|
display: block;
|
2018-07-17 18:17:43 +00:00
|
|
|
content: '';
|
2018-07-14 11:05:01 +00:00
|
|
|
clear: both;
|
2018-07-14 10:07:08 +00:00
|
|
|
}
|
2018-09-15 13:37:29 +00:00
|
|
|
|
2018-09-15 14:29:07 +00:00
|
|
|
/* GRID ITEM */
|
2018-09-15 13:37:29 +00:00
|
|
|
.griditem, .griditem-wide {
|
2018-09-14 22:24:12 +00:00
|
|
|
padding-bottom: var(--size-grid-gutter);
|
2018-07-17 18:17:43 +00:00
|
|
|
border-radius: var(--size-item-corner);
|
2018-09-14 22:24:12 +00:00
|
|
|
margin-bottom: var(--size-grid-gutter);
|
2018-09-14 18:55:32 +00:00
|
|
|
background: var(--color-itembg);
|
2018-07-17 18:17:43 +00:00
|
|
|
width: var(--size-grid-column);
|
2018-07-18 10:06:56 +00:00
|
|
|
text-decoration: none;
|
2018-07-21 17:46:18 +00:00
|
|
|
position: relative;
|
2018-09-14 22:24:12 +00:00
|
|
|
float: left;
|
2018-09-14 02:57:15 +00:00
|
|
|
}
|
2018-09-15 13:37:29 +00:00
|
|
|
.griditem:hover, .griditem-wide:hover {
|
2018-09-14 18:55:32 +00:00
|
|
|
opacity: var(--alpha-ascent);
|
2018-07-14 15:55:10 +00:00
|
|
|
}
|
2018-07-17 14:36:13 +00:00
|
|
|
@media screen and (min-width: 886px) {
|
2018-09-15 13:37:29 +00:00
|
|
|
.griditem-wide {
|
2018-09-14 18:55:32 +00:00
|
|
|
width: calc(var(--size-grid-column) * 2 + var(--size-grid-gutter));
|
2018-07-17 14:36:13 +00:00
|
|
|
}
|
|
|
|
}
|
2018-09-15 13:37:29 +00:00
|
|
|
.griditem:hover {
|
2018-09-14 22:24:12 +00:00
|
|
|
background: var(--color-itembg);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2018-09-15 14:15:16 +00:00
|
|
|
.griditem::selection {
|
|
|
|
background: var(--b_high);
|
|
|
|
}
|
2018-09-15 13:37:29 +00:00
|
|
|
.griditem-containerupper {
|
2018-09-14 18:55:32 +00:00
|
|
|
padding: var(--size-grid-gutter) var(--size-grid-gutter) 0 var(--size-grid-gutter);
|
2018-07-18 11:17:51 +00:00
|
|
|
display: inline-block;
|
2018-07-21 17:46:18 +00:00
|
|
|
z-index: 100;
|
2018-07-18 11:17:51 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
2018-09-15 13:37:29 +00:00
|
|
|
.griditem-containerlower {
|
2018-09-14 18:55:32 +00:00
|
|
|
padding: 0 var(--size-grid-gutter) 0 var(--size-grid-gutter);
|
2018-07-18 16:02:00 +00:00
|
|
|
z-index: 100;
|
|
|
|
}
|
2018-09-15 13:37:29 +00:00
|
|
|
.griditem-containerlower:empty {
|
2018-07-18 11:17:51 +00:00
|
|
|
display: none;
|
|
|
|
}
|
2018-09-15 13:37:29 +00:00
|
|
|
|
|
|
|
/*IMAGE*/
|
|
|
|
.griditem-image .griditem-containerupper {
|
2018-09-14 22:24:12 +00:00
|
|
|
position: absolute;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
left: 0;
|
2018-10-30 14:05:23 +00:00
|
|
|
z-index: 200;
|
2018-09-14 22:24:12 +00:00
|
|
|
top: 0;
|
|
|
|
}
|
2018-09-15 13:37:29 +00:00
|
|
|
.griditem-image .griditem-containerlower {
|
2018-09-14 22:24:12 +00:00
|
|
|
padding-bottom: var(--size-grid-gutter);
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
bottom: 0;
|
2018-10-30 14:05:23 +00:00
|
|
|
z-index: 200;
|
2018-09-14 22:24:12 +00:00
|
|
|
left: 0;
|
|
|
|
}
|
2018-09-15 13:37:29 +00:00
|
|
|
.griditem-image {
|
|
|
|
background: transparent;
|
|
|
|
padding-bottom: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.griditem-image-img {
|
2018-07-18 15:28:10 +00:00
|
|
|
vertical-align: middle; /* vertical-align css hack removes bottom padding */
|
2018-09-15 12:25:32 +00:00
|
|
|
object-fit: cover;
|
2018-07-18 12:55:19 +00:00
|
|
|
margin-bottom: 0px;
|
2018-09-15 12:25:32 +00:00
|
|
|
width: 100%;
|
|
|
|
max-height: 1000px;
|
|
|
|
position: relative;
|
|
|
|
z-index: 100;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
2018-10-30 11:42:51 +00:00
|
|
|
.griditem-img {
|
|
|
|
vertical-align: middle; /* vertical-align css hack removes bottom padding */
|
|
|
|
width: calc(100% + var(--size-grid-gutter)*2);
|
|
|
|
max-height: 1000px;
|
|
|
|
margin-left: calc(-1 * var(--size-grid-gutter));
|
|
|
|
margin-right: calc(-1 * var(--size-grid-gutter));
|
|
|
|
padding-top: var(--size-grid-gutter);
|
2018-10-30 14:05:23 +00:00
|
|
|
cursor: pointer;
|
2018-10-30 11:42:51 +00:00
|
|
|
}
|
2018-07-18 15:28:10 +00:00
|
|
|
.image-overlay {
|
2018-09-14 22:24:12 +00:00
|
|
|
background-color: var(--color-imagedarken);
|
2018-07-18 15:28:10 +00:00
|
|
|
position: absolute;
|
2018-09-14 22:24:12 +00:00
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2018-09-15 12:25:32 +00:00
|
|
|
z-index: 150;
|
2018-07-18 15:28:10 +00:00
|
|
|
opacity: 0;
|
|
|
|
}
|
2018-09-15 13:37:29 +00:00
|
|
|
.griditem-image:hover .image-overlay {
|
2018-09-14 18:55:32 +00:00
|
|
|
opacity: var(--alpha-darken);
|
2018-07-18 11:17:51 +00:00
|
|
|
}
|
2018-09-15 13:37:29 +00:00
|
|
|
.griditem-image .griditem-link {
|
2018-07-18 15:28:10 +00:00
|
|
|
display: none;
|
|
|
|
}
|
2018-09-15 13:37:29 +00:00
|
|
|
.griditem-image:hover .griditem-link {
|
2018-07-18 15:28:10 +00:00
|
|
|
display: initial;
|
|
|
|
text-shadow: 0 0 3em #000;
|
|
|
|
}
|
2018-09-15 13:37:29 +00:00
|
|
|
|
2018-09-15 14:29:07 +00:00
|
|
|
/* TITLE */
|
2018-09-15 13:37:29 +00:00
|
|
|
.griditem-title {
|
2018-09-14 18:55:32 +00:00
|
|
|
opacity: var(--alpha-enabled);
|
|
|
|
color: var(--color-item);
|
2018-07-18 06:36:36 +00:00
|
|
|
font-size: var(--size-font-title);
|
|
|
|
text-decoration: none;
|
|
|
|
float: left;
|
|
|
|
clear: both;
|
2018-07-13 15:56:09 +00:00
|
|
|
}
|
2018-09-15 13:37:29 +00:00
|
|
|
.griditem-image .griditem-title {
|
2018-07-18 11:17:51 +00:00
|
|
|
display: none;
|
|
|
|
}
|
2018-09-15 13:37:29 +00:00
|
|
|
.griditem-image:hover .griditem-title {
|
2018-07-18 11:17:51 +00:00
|
|
|
display: initial;
|
2018-07-18 15:28:10 +00:00
|
|
|
text-shadow: 0 0 3em #000;
|
|
|
|
color: white;
|
2018-07-18 11:17:51 +00:00
|
|
|
}
|
2018-09-15 13:37:29 +00:00
|
|
|
|
2018-09-15 14:29:07 +00:00
|
|
|
/* LINK */
|
2018-09-15 13:37:29 +00:00
|
|
|
.griditem-linkcontainer {
|
2018-07-18 06:36:36 +00:00
|
|
|
margin-top: var(--size-item-elem-padding);
|
|
|
|
float: left;
|
|
|
|
clear: both;
|
2018-07-13 15:56:09 +00:00
|
|
|
}
|
2018-09-15 13:37:29 +00:00
|
|
|
.griditem-link {
|
|
|
|
width: calc(100% - var(--size-font-bodytypes) * 2);
|
|
|
|
float: left;
|
|
|
|
clear: both;
|
|
|
|
text-decoration: none;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2018-09-15 17:22:53 +00:00
|
|
|
|
|
|
|
.griditem-linktitle {
|
|
|
|
/*opacity: var(--alpha-idle);*/
|
2018-09-14 18:55:32 +00:00
|
|
|
color: var(--color-item);
|
2018-07-18 07:20:53 +00:00
|
|
|
font-size: var(--size-font-body);
|
2018-07-18 06:36:36 +00:00
|
|
|
float: left;
|
|
|
|
}
|
2018-09-15 13:37:29 +00:00
|
|
|
.griditem-link:hover .griditem-linktitle {
|
2018-09-14 18:55:32 +00:00
|
|
|
background-color: var(--color-itemascent);
|
|
|
|
color: var(--color-itembg);
|
2018-07-13 15:56:09 +00:00
|
|
|
}
|
2018-09-15 17:22:53 +00:00
|
|
|
.griditem-linktitle {
|
|
|
|
opacity: var(--alpha-idle);
|
|
|
|
}
|
|
|
|
.griditem-linkicon {
|
|
|
|
margin-right: var(--size-item-elem-sep);
|
|
|
|
color: var(--color-item);
|
2018-09-15 17:25:36 +00:00
|
|
|
opacity: calc(var(--alpha-idleicon) - 0.1);
|
2018-09-15 17:22:53 +00:00
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
.griditem-linktitle {
|
|
|
|
opacity: var(--alpha-idle);
|
|
|
|
}
|
|
|
|
.griditem-link:hover .griditem-linktitle {
|
|
|
|
opacity: var(--alpha-ascent);
|
|
|
|
}
|
|
|
|
.griditem:hover .griditem-linkicon {
|
|
|
|
opacity: var(--alpha-enabledicon);
|
|
|
|
}
|
|
|
|
.griditem:hover .griditem-linktitle {
|
|
|
|
opacity: var(--alpha-enabled);
|
|
|
|
}
|
2018-07-13 15:56:09 +00:00
|
|
|
|
2018-07-18 07:20:53 +00:00
|
|
|
/* TYPE */
|
2018-10-29 12:33:45 +00:00
|
|
|
.griditem-typecontainer {
|
|
|
|
position: absolute;
|
|
|
|
right: 0px;
|
|
|
|
top: 0px;
|
|
|
|
margin-right: var(--size-grid-gutter);
|
|
|
|
}
|
2018-09-15 13:37:29 +00:00
|
|
|
.griditem-type {
|
2018-09-14 18:55:32 +00:00
|
|
|
opacity: var(--alpha-idle);
|
2018-10-29 12:33:45 +00:00
|
|
|
width: calc(var(--size-font-bodytypes)*2);
|
2018-09-14 18:55:32 +00:00
|
|
|
color: var(--color-item);
|
|
|
|
padding-bottom: var(--size-grid-gutter);
|
|
|
|
font-size: var(--size-font-bodytypes);
|
|
|
|
padding-top: var(--size-grid-gutter);
|
2018-07-18 07:20:53 +00:00
|
|
|
vertical-align: top;
|
|
|
|
text-align: center;
|
2018-10-29 12:33:45 +00:00
|
|
|
float: right;
|
2018-07-18 07:20:53 +00:00
|
|
|
}
|
2018-09-15 17:22:53 +00:00
|
|
|
.griditem-typeicon {
|
|
|
|
opacity: var(--alpha-idleicon);
|
|
|
|
}
|
2018-09-15 14:15:16 +00:00
|
|
|
.griditem-image .griditem-typeicon {
|
2018-07-18 15:28:10 +00:00
|
|
|
display: none;
|
|
|
|
}
|
2018-09-15 14:15:16 +00:00
|
|
|
.griditem-image:hover .griditem-typeicon {
|
2018-07-18 15:28:10 +00:00
|
|
|
display: initial;
|
2018-09-14 18:55:32 +00:00
|
|
|
color: var(--color-image);
|
2018-09-15 17:22:53 +00:00
|
|
|
opacity: var(--alpha-enabledicon);
|
|
|
|
}
|
|
|
|
.griditem-type .griditem-typeicon {
|
|
|
|
opacity: var(--alpha-idleicon);
|
|
|
|
color: var(--color-item);
|
2018-07-18 15:28:10 +00:00
|
|
|
}
|
2018-09-15 13:37:29 +00:00
|
|
|
.griditem:hover .griditem-type {
|
2018-09-14 18:55:32 +00:00
|
|
|
opacity: var(--alpha-enabled);
|
|
|
|
color: var(--color-item);
|
2018-07-18 07:20:53 +00:00
|
|
|
}
|
2018-09-15 14:29:07 +00:00
|
|
|
.griditem-type:hover .griditem-typeicon {
|
2018-09-14 18:55:32 +00:00
|
|
|
opacity: var(--alpha-ascent);
|
|
|
|
color: var(--color-itemascent);
|
2018-07-18 07:20:53 +00:00
|
|
|
}
|
|
|
|
|
2018-09-14 18:55:32 +00:00
|
|
|
/* NOTE, QUOTE, TERM, TAGS, AUTH, PROG */
|
2018-10-29 14:41:42 +00:00
|
|
|
.griditem-note,
|
|
|
|
.griditem-quote,
|
|
|
|
.griditem-term,
|
|
|
|
.griditem-tags,
|
|
|
|
.griditem-proj,
|
|
|
|
.griditem-auth,
|
|
|
|
.griditem-file,
|
|
|
|
.griditem-prog {
|
2018-09-14 18:55:32 +00:00
|
|
|
opacity: var(--alpha-idle);
|
2018-09-15 14:15:16 +00:00
|
|
|
padding-top: var(--size-item-elem-padding);
|
2018-09-14 18:55:32 +00:00
|
|
|
color: var(--color-item);
|
2018-09-15 14:15:16 +00:00
|
|
|
font-size: var(--size-font-body);
|
2018-07-18 06:36:36 +00:00
|
|
|
float: left;
|
|
|
|
clear: both;
|
2018-07-14 15:55:10 +00:00
|
|
|
}
|
2018-09-15 14:15:16 +00:00
|
|
|
.griditem:hover .griditem-note,
|
|
|
|
.griditem:hover .griditem-quote,
|
|
|
|
.griditem:hover .griditem-term,
|
|
|
|
.griditem:hover .griditem-tags,
|
2018-10-29 13:45:34 +00:00
|
|
|
.griditem:hover .griditem-proj,
|
2018-09-15 14:15:16 +00:00
|
|
|
.griditem:hover .griditem-auth,
|
2018-10-29 14:41:42 +00:00
|
|
|
.griditem:hover .griditem-file,
|
2018-09-15 14:15:16 +00:00
|
|
|
.griditem:hover .griditem-prog {
|
2018-09-15 17:22:53 +00:00
|
|
|
opacity: var(--alpha-enabled);
|
2018-09-15 14:15:16 +00:00
|
|
|
color: var(--color-item);
|
2018-09-14 02:57:15 +00:00
|
|
|
}
|
2018-09-15 17:22:53 +00:00
|
|
|
.griditem-image .griditem-link,
|
|
|
|
.griditem-image .griditem-note,
|
|
|
|
.griditem-image .griditem-quote,
|
|
|
|
.griditem-image .griditem-term,
|
|
|
|
.griditem-image .griditem-tags,
|
2018-10-29 13:45:34 +00:00
|
|
|
.griditem-image .griditem-proj,
|
2018-09-15 17:22:53 +00:00
|
|
|
.griditem-image .griditem-auth,
|
2018-10-29 14:41:42 +00:00
|
|
|
.griditem-image .griditem-file,
|
2018-09-15 17:22:53 +00:00
|
|
|
.griditem-image .griditem-prog {
|
2018-09-14 18:55:32 +00:00
|
|
|
color: var(--color-image);
|
2018-07-18 16:02:00 +00:00
|
|
|
}
|
|
|
|
|
2018-10-30 08:28:56 +00:00
|
|
|
.griditem-file {
|
|
|
|
word-break: break-all;
|
|
|
|
}
|
|
|
|
|
2018-10-29 14:41:42 +00:00
|
|
|
.griditem-file-link {
|
|
|
|
color: var(--color-item);
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.griditem-file-link:hover {
|
2018-10-30 08:28:56 +00:00
|
|
|
background-color: var(--color-itemascent);
|
|
|
|
color: var(--color-itembg);
|
|
|
|
word-break: break-all;
|
2018-10-29 14:41:42 +00:00
|
|
|
}
|
|
|
|
|
2018-09-15 14:29:07 +00:00
|
|
|
/* IMAGE */
|
2018-09-15 13:37:29 +00:00
|
|
|
.griditem-image .griditem-containerlower {
|
2018-07-18 11:17:51 +00:00
|
|
|
display: none;
|
|
|
|
}
|
2018-09-15 13:37:29 +00:00
|
|
|
.griditem-image:hover .griditem-containerlower {
|
2018-07-18 15:28:10 +00:00
|
|
|
display: initial;
|
2018-07-18 16:02:00 +00:00
|
|
|
}
|
2018-09-15 14:29:07 +00:00
|
|
|
.griditem-taglink {
|
|
|
|
color: var(--color-item);
|
|
|
|
text-decoration:none;
|
2018-07-14 15:02:57 +00:00
|
|
|
}
|
2018-09-15 14:29:07 +00:00
|
|
|
.griditem:hover .griditem-taglink {
|
|
|
|
color: var(--color-item);
|
2018-07-14 15:55:10 +00:00
|
|
|
}
|
2018-09-15 14:29:07 +00:00
|
|
|
.griditem:hover .griditem-taglink:hover {
|
|
|
|
background-color: var(--color-itemascent);
|
|
|
|
color: var(--color-itembg);
|
2018-07-14 15:02:57 +00:00
|
|
|
}
|
2018-09-15 14:29:07 +00:00
|
|
|
.griditem-image:hover .griditem-taglink {
|
2018-07-18 16:02:00 +00:00
|
|
|
color: #fff;
|
|
|
|
}
|
2018-09-15 14:29:07 +00:00
|
|
|
.griditem-image:hover .griditem-taglink:hover {
|
2018-07-18 16:02:00 +00:00
|
|
|
color: #fff;
|
|
|
|
}
|
2018-07-14 15:55:10 +00:00
|
|
|
|
2018-07-18 07:20:53 +00:00
|
|
|
/* SMALL ICONS */
|
2018-07-14 15:24:09 +00:00
|
|
|
.textIcon {
|
2018-07-18 10:12:02 +00:00
|
|
|
margin-right: var(--size-item-elem-sep);
|
2018-09-15 17:22:53 +00:00
|
|
|
opacity: var(--alpha-idleicon);
|
2018-07-14 15:24:09 +00:00
|
|
|
}
|
2018-09-15 13:37:29 +00:00
|
|
|
.griditem:hover .textIcon {
|
2018-09-15 14:29:07 +00:00
|
|
|
color: var(--color-item);
|
2018-09-15 17:22:53 +00:00
|
|
|
opacity: var(--alpha-enabledicon);
|
2018-09-14 18:55:32 +00:00
|
|
|
}
|
|
|
|
|
2018-10-30 14:05:23 +00:00
|
|
|
/* LIGHTBOX */
|
|
|
|
.lightbox {
|
|
|
|
position: fixed;
|
|
|
|
z-index: 300;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.lightbox-back {
|
|
|
|
z-index: 300;
|
|
|
|
background-color: rgba(0,0,0,0.9);
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
.lightbox-back:hover {
|
|
|
|
background-color: rgba(0,0,0,0.85);
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.lightbox-item {
|
|
|
|
z-index: 400;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translateY(-50%) translateX(-50%);
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
.lightbox-img {
|
|
|
|
max-height: 100vh;
|
|
|
|
max-width: 100vw;
|
|
|
|
}
|
2018-09-14 18:55:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-09-15 14:29:07 +00:00
|
|
|
/*TODO: refactor below; */
|
2018-09-14 18:55:32 +00:00
|
|
|
|
|
|
|
/* PAGE */
|
|
|
|
.page-overlay {
|
|
|
|
/* visual */
|
2018-09-15 14:29:07 +00:00
|
|
|
background-color: var(--color-page-bg);
|
2018-09-14 18:55:32 +00:00
|
|
|
opacity: 0;
|
|
|
|
/*-webkit-transition: opacity var(--animation-time) linear;
|
|
|
|
transition: opacity var(--animation-time) linear;*/
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
/* position */
|
|
|
|
position: absolute;
|
|
|
|
z-index: -100;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
/* content */
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
.page-overlay .content-menu {
|
|
|
|
width: 100px;
|
|
|
|
float: left;
|
|
|
|
text-align: center;
|
|
|
|
height: 100%;
|
|
|
|
padding-top: auto;
|
|
|
|
padding-bottom: auto;
|
|
|
|
margin-right: 50px;
|
|
|
|
border-radius: var(--size-item-corner);
|
|
|
|
}
|
|
|
|
.page-overlay .content-menu:hover {
|
2018-09-15 14:29:07 +00:00
|
|
|
background-color: var(--color-page-i);
|
2018-09-14 18:55:32 +00:00
|
|
|
}
|
|
|
|
.page-overlay .content-menu:hover a {
|
2018-09-15 14:29:07 +00:00
|
|
|
color: var(--color-page-a);
|
2018-09-14 18:55:32 +00:00
|
|
|
}
|
|
|
|
.page-overlay .content-menu a {
|
2018-09-15 14:29:07 +00:00
|
|
|
color: var(--color-page-e);
|
2018-09-14 18:55:32 +00:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
.page-overlay .content-menu .content-menu-option {
|
|
|
|
height: 100px;
|
|
|
|
width: 100px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
.page-overlay .content form {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
.page-overlay .content .row .key {
|
|
|
|
width: 100px;
|
2018-09-15 14:29:07 +00:00
|
|
|
color: var(--color-page-a);
|
2018-09-14 18:55:32 +00:00
|
|
|
visibility: hidden;
|
|
|
|
float: left;
|
|
|
|
padding: 9px 7px 10px 0;
|
|
|
|
text-align: right;
|
|
|
|
margin-right: 0px;
|
|
|
|
}
|
|
|
|
.page-overlay .content .row input {
|
|
|
|
padding: 10px;
|
|
|
|
width: 400px;
|
|
|
|
margin-bottom: 10px;
|
2018-09-15 14:29:07 +00:00
|
|
|
background-color: var(--color-page-input);
|
2018-09-14 18:55:32 +00:00
|
|
|
color: #fff;
|
|
|
|
border-width: 0px;
|
|
|
|
border-radius: var(--size-item-corner);
|
|
|
|
}
|
|
|
|
.page-overlay .content .row input::placeholder {
|
|
|
|
opacity: 1;
|
|
|
|
color: var(--color-menu);
|
|
|
|
}
|
|
|
|
.page-overlay .content .row input:hover {
|
2018-09-15 14:29:07 +00:00
|
|
|
background-color: var(--color-page-i);
|
2018-09-14 18:55:32 +00:00
|
|
|
}
|
|
|
|
.page-overlay .content .row input:focus {
|
2018-09-15 14:29:07 +00:00
|
|
|
background-color: var(--color-page-e);
|
2018-09-14 18:55:32 +00:00
|
|
|
}
|
|
|
|
.page-overlay .content .display {
|
|
|
|
float: left;
|
|
|
|
height: 100%;
|
|
|
|
width: 400px;
|
|
|
|
padding: 10px;
|
|
|
|
margin-left: 50px;
|
2018-09-15 14:29:07 +00:00
|
|
|
color: var(--color-page-e);
|
2018-09-14 18:55:32 +00:00
|
|
|
}
|
|
|
|
.page-overlay .content-enter {
|
|
|
|
margin-top: 50px;
|
|
|
|
float: left;
|
|
|
|
width: 100%;
|
|
|
|
height: 100px;
|
|
|
|
clear: both;
|
|
|
|
text-align: center;
|
|
|
|
padding-top: auto;
|
|
|
|
padding-bottom: auto;
|
|
|
|
vertical-align: center;
|
|
|
|
border-radius: var(--size-item-corner);
|
|
|
|
}
|
|
|
|
.page-overlay .content-enter .content-menu-option {
|
|
|
|
height: 100%;
|
|
|
|
vertical-align: center;
|
|
|
|
padding-top: auto;
|
|
|
|
padding-bottom: auto;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
.page-overlay .content-enter:hover {
|
2018-09-15 14:29:07 +00:00
|
|
|
background-color: var(--color-page-i);
|
2018-09-14 18:55:32 +00:00
|
|
|
}
|
|
|
|
.page-overlay .content-enter:hover a {
|
2018-09-15 14:29:07 +00:00
|
|
|
color: var(--color-page-a);
|
2018-09-14 18:55:32 +00:00
|
|
|
}
|
|
|
|
.page-overlay .content-enter a {
|
2018-09-15 14:29:07 +00:00
|
|
|
color: var(--color-page-e);
|
2018-09-14 18:55:32 +00:00
|
|
|
text-decoration: none;
|
2018-07-13 15:56:09 +00:00
|
|
|
}
|