Notes/static/css/main.css

408 lines
9.0 KiB
CSS
Raw Normal View History

2023-06-18 20:13:35 +02:00
html {
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
[onClick] {
cursor: pointer;
}
2023-06-15 07:24:23 +02:00
html,
body {
margin: 0px;
padding: 0px;
font-family: 'Liberation Mono', monospace;
2023-06-17 09:11:14 +02:00
font-size: 14pt;
2023-06-18 20:13:35 +02:00
background-color: #fff;
2023-06-27 14:44:36 +02:00
height: 100%;
2023-06-15 07:24:23 +02:00
}
h1 {
2023-06-20 07:59:54 +02:00
color: #abc837;
2023-06-15 07:24:23 +02:00
}
2023-06-27 14:44:36 +02:00
.layout-crumbs {
grid-template-areas: "header" "crumbs" "child-nodes" "name" "content" "files" "blank";
grid-template-columns: 1fr;
grid-template-rows: min-content /* header */ min-content /* crumbs */ min-content /* child-nodes */ min-content /* name */ min-content /* content */ min-content /* files */ 1fr;
/* blank */
}
.layout-crumbs #tree {
display: none;
}
.layout-tree {
display: grid;
grid-template-areas: "header header" "tree crumbs" "tree child-nodes" "tree name" "tree content" "tree files" "tree blank";
grid-template-columns: min-content 1fr;
grid-template-rows: min-content /* header */ min-content /* crumbs */ min-content /* child-nodes */ min-content /* name */ min-content /* content */ min-content /* files */ 1fr;
/* blank */
color: #fff;
height: 100%;
}
.layout-tree-only {
display: grid;
grid-template-areas: "header" "tree";
grid-template-columns: 1fr;
grid-template-rows: min-content /* header */ 1fr;
/* blank */
color: #fff;
height: 100%;
}
.layout-tree-only #crumbs {
display: none;
}
.layout-tree-only .child-nodes {
display: none;
}
.layout-tree-only .node-name {
display: none;
}
.layout-tree-only .node-content {
display: none;
}
.layout-tree-only #file-section {
display: none;
}
2023-06-15 07:24:23 +02:00
#app {
2023-06-18 20:13:35 +02:00
display: grid;
2023-06-27 14:44:36 +02:00
grid-template-areas: "header header" "tree crumbs" "tree child-nodes" "tree name" "tree content" "tree files" "tree blank";
grid-template-columns: min-content 1fr;
grid-template-rows: min-content /* header */ min-content /* crumbs */ min-content /* child-nodes */ min-content /* name */ min-content /* content */ min-content /* files */ 1fr;
/* blank */
2023-06-15 07:24:23 +02:00
color: #fff;
2023-06-27 14:44:36 +02:00
height: 100%;
2023-06-15 07:24:23 +02:00
}
2023-06-21 23:52:21 +02:00
#blackout {
2023-06-18 22:05:10 +02:00
position: absolute;
left: 0px;
right: 0px;
top: 0px;
bottom: 0px;
z-index: 1024;
background: rgba(0, 0, 0, 0.35);
}
#menu {
position: absolute;
top: 24px;
right: 24px;
background: #fff;
color: #000;
border: 2px solid #000;
box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.5);
z-index: 1025;
}
#menu .item {
padding: 16px;
border-bottom: 1px solid #aaa;
user-select: none;
2023-06-20 08:13:32 +02:00
font-size: 0.85em;
2023-06-18 22:05:10 +02:00
-webkit-tap-highlight-color: transparent;
}
2023-06-20 08:13:32 +02:00
#menu .item.separator {
2023-06-21 23:52:21 +02:00
border-bottom: 2px solid #000;
2023-06-20 08:13:32 +02:00
}
2023-06-18 22:05:10 +02:00
#menu .item:hover {
background: #ddd;
}
#menu .item:last-child {
border-bottom: none;
}
2023-06-21 23:52:21 +02:00
#upload {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #333;
background: #fff;
border: 2px solid #000;
padding: 16px;
z-index: 1025;
}
#upload input {
border: 1px solid #000;
font-size: 0.85em;
}
#upload .files {
display: grid;
grid-template-columns: 1fr min-content;
padding-top: 12px;
}
#upload .files .file {
margin-top: 8px;
padding-top: 8px;
border-top: 1px solid #ddd;
}
#upload .files .file:nth-child(1) {
padding-top: 0px;
margin-top: 0px;
border-top: none;
}
#upload .files .file.done {
color: #0a0;
}
#upload .files .progress {
justify-self: end;
margin-top: 8px;
padding-top: 8px;
padding-left: 8px;
border-top: 1px solid #ddd;
}
#upload .files .progress:nth-child(2) {
padding-top: 0px;
margin-top: 0px;
border-top: none;
}
#upload .files .progress.done {
color: #0a0;
}
2023-06-18 20:13:35 +02:00
header {
display: grid;
2023-06-27 14:44:36 +02:00
grid-area: header;
grid-template-columns: min-content 1fr min-content min-content;
2023-06-18 20:13:35 +02:00
align-items: center;
padding: 0px;
2023-06-20 07:59:54 +02:00
color: #333c11;
2023-06-27 14:44:36 +02:00
background: linear-gradient(to right, #009fff, #ec2f4b);
background: linear-gradient(to right, #f5af19, #f12711);
background: linear-gradient(to right, #fdc830, #f37335);
background: linear-gradient(to right, #8a2387, #e94057, #f27121);
background: linear-gradient(to right, #659999, #f4791f);
background: linear-gradient(to right, #3e5151, #decba4);
color: #fff;
2023-06-18 20:13:35 +02:00
}
header.modified {
background: #c84a37;
color: #faedeb;
}
2023-06-27 14:44:36 +02:00
header .tree {
padding-left: 16px;
}
header .tree img {
display: block;
height: 24px;
width: 24px;
}
2023-06-18 20:13:35 +02:00
header .name {
font-weight: bold;
padding-left: 16px;
}
header .add {
font-size: 2em;
padding-right: 16px;
cursor: pointer;
}
2023-06-18 22:05:10 +02:00
header .menu {
font-size: 1.25em;
padding-right: 16px;
cursor: pointer;
user-select: none;
-webkit-tap-highlight-color: transparent;
}
2023-06-27 14:44:36 +02:00
#tree {
grid-area: tree;
padding: 16px;
background-color: #333;
color: #ddd;
font-size: 0.85em;
}
#tree .node {
display: grid;
grid-template-columns: 24px min-content;
grid-template-rows: min-content 1fr;
margin-top: 12px;
}
#tree .node .expand-toggle img {
width: 16px;
height: 16px;
}
#tree .node .name {
white-space: nowrap;
cursor: pointer;
}
#tree .node .name:hover {
color: #ecbf00;
}
#tree .node .name.selected {
color: #ecbf00;
font-weight: bold;
}
#tree .node .children {
padding-left: 24px;
margin-left: 8px;
border-left: 1px solid #555;
grid-column: 1 / -1;
}
#tree .node .children.collapsed {
display: none;
}
#crumbs {
grid-area: crumbs;
background: linear-gradient(to right, #fdc830, #f37335);
}
2023-06-17 09:11:14 +02:00
.crumbs {
display: flex;
flex-wrap: wrap;
2023-06-27 14:44:36 +02:00
padding: 8px 16px;
background: #505050;
2023-06-18 20:13:35 +02:00
color: #fff;
2023-06-27 14:44:36 +02:00
box-shadow: 0px 5px 8px 0px rgba(128, 128, 128, 0.5);
2023-06-17 09:11:14 +02:00
}
.crumbs .crumb {
margin-right: 8px;
font-size: 0.8em;
cursor: pointer;
2023-06-18 20:13:35 +02:00
user-select: none;
-webkit-tap-highlight-color: transparent;
2023-06-17 09:11:14 +02:00
}
.crumbs .crumb:after {
2023-06-18 20:13:35 +02:00
content: "•";
2023-06-17 09:11:14 +02:00
margin-left: 8px;
2023-06-20 07:59:54 +02:00
color: #abc837;
2023-06-17 09:11:14 +02:00
}
.crumbs .crumb:last-child {
margin-right: 0;
}
.crumbs .crumb:last-child:after {
content: '';
margin-left: 0px;
}
.child-nodes {
2023-06-27 14:44:36 +02:00
grid-area: child-nodes;
2023-06-17 09:11:14 +02:00
display: flex;
flex-wrap: wrap;
padding: 16px 16px 0px 16px;
}
.child-nodes .child-node {
padding: 8px;
border-radius: 8px;
2023-06-27 14:44:36 +02:00
background-color: #333;
2023-06-18 20:13:35 +02:00
margin-right: 12px;
2023-06-17 09:11:14 +02:00
margin-bottom: 16px;
white-space: nowrap;
font-size: 0.8em;
cursor: pointer;
2023-06-18 20:13:35 +02:00
user-select: none;
-webkit-tap-highlight-color: transparent;
2023-06-17 09:11:14 +02:00
}
.node-name {
2023-06-27 14:44:36 +02:00
grid-area: name;
2023-06-18 20:13:35 +02:00
background: #fff;
color: #000;
text-align: center;
font-weight: bold;
2023-06-27 14:44:36 +02:00
margin-top: 32px;
margin-bottom: 32px;
2023-06-17 09:11:14 +02:00
}
.node-content {
2023-06-27 14:44:36 +02:00
grid-area: content;
2023-06-18 20:13:35 +02:00
justify-self: center;
word-wrap: break-word;
font-family: monospace;
2023-06-18 20:13:35 +02:00
font-size: 0.85em;
color: #333;
2023-06-27 14:44:36 +02:00
width: calc(100% - 32px);
max-width: 900px;
resize: none;
border: none;
outline: none;
2023-06-18 20:13:35 +02:00
}
.node-content:invalid {
2023-06-22 08:28:51 +02:00
background: #f5f5f5;
2023-06-27 14:44:36 +02:00
padding-top: 16px;
}
/* ============================================================= *
* Textarea replicates the height of an element expanding height *
* ============================================================= */
.grow-wrap {
/* easy way to plop the elements on top of each other and have them both sized based on the tallest one's height */
display: grid;
grid-area: content;
}
.grow-wrap::after {
/* Note the weird space! Needed to preventy jumpy behavior */
content: attr(data-replicated-value) " ";
/* This is how textarea text behaves */
width: calc(100% - 32px);
max-width: 900px;
white-space: pre-wrap;
word-wrap: break-word;
color: #f0f;
background: rgba(0, 255, 255, 0.5);
justify-self: center;
/* Hidden from view, clicks, and screen readers */
visibility: hidden;
}
.grow-wrap > textarea {
/* You could leave this, but after a user resizes, then it ruins the auto sizing */
resize: none;
/* Firefox shows scrollbar on growth, you can hide like this. */
overflow: hidden;
}
.grow-wrap > textarea,
.grow-wrap::after {
/* Identical styling required!! */
padding: 0.5rem;
font: inherit;
/* Place on top of each other */
grid-area: 1 / 1 / 2 / 2;
2023-06-22 08:28:51 +02:00
}
2023-06-27 14:44:36 +02:00
/* ============================================================= */
2023-06-22 08:28:51 +02:00
#file-section {
2023-06-27 14:44:36 +02:00
grid-area: files;
2023-06-22 08:28:51 +02:00
justify-self: center;
2023-06-27 14:44:36 +02:00
width: calc(100% - 32px);
max-width: 900px;
2023-06-22 08:28:51 +02:00
padding: 32px;
background: #f5f5f5;
2023-06-27 14:44:36 +02:00
border-radius: 8px;
margin-top: 32px;
margin-bottom: 32px;
2023-06-22 08:28:51 +02:00
}
#file-section .header {
font-weight: bold;
color: #000;
margin-bottom: 16px;
}
#file-section .files {
display: grid;
grid-template-columns: 1fr min-content;
grid-gap: 8px 16px;
color: #444;
font-size: 0.85em;
}
#file-section .files .filename {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
2023-06-22 16:48:31 +02:00
cursor: pointer;
}
#file-section .files .filename:hover {
text-decoration: underline;
2023-06-22 08:28:51 +02:00
}
#file-section .files .size {
white-space: nowrap;
text-align: right;
2023-06-18 22:05:10 +02:00
}
2023-06-22 16:48:31 +02:00
@media only screen and (max-width: 932px) {
2023-06-27 14:44:36 +02:00
#app {
grid-template-areas: "header" "crumbs" "child-nodes" "name" "content" "files" "blank";
grid-template-columns: 1fr;
grid-template-rows: min-content /* header */ min-content /* crumbs */ min-content /* child-nodes */ min-content /* name */ min-content /* content */ min-content /* files */ 1fr;
/* blank */
}
#app #tree {
display: none;
}
2023-06-18 20:13:35 +02:00
.node-content {
2023-06-22 16:48:31 +02:00
margin-left: 16px;
padding: 16px;
2023-06-18 20:13:35 +02:00
justify-self: start;
}
2023-06-22 08:28:51 +02:00
#file-section {
2023-06-22 16:48:31 +02:00
width: calc(100% - 32px);
padding: 16px;
margin-left: 16px;
2023-06-22 08:28:51 +02:00
justify-self: start;
}
2023-06-17 09:11:14 +02:00
}