filebrowser/_assets/src/css/styles.css
Henrique Dias 562a3862e0 Update error messages
Former-commit-id: 10f1f2b1817ea5283813dc11d81c1e002b14a886 [formerly c28c4c6be4eecfc3a8902aea26301e48c15bf233] [formerly bed77122ad94c12c49925e2de476202c6444ac51 [formerly 241c13cdbdc8870eaf998d1101ede524101f65ce]]
Former-commit-id: 48595772c1ade04604948993071590b110e8745a [formerly feb64410e7e4113b33acc91d98c872c1178972ec]
Former-commit-id: 370de30ebc65149e6bb46ac33359c8772c8033fd
2017-07-03 19:26:29 +01:00

499 lines
8.1 KiB
CSS

@import "./fonts.css";
@import "./normalize.css";
@import "./base.css";
@import "./header.css";
@import "./prompts.css";
@import "./listing.css";
/* * * * * * * * * * * * * * * *
* EDITOR *
* * * * * * * * * * * * * * * */
#editor .source {
display: none;
}
#editor .content {
background: #fff;
padding: 1em 0;
}
#editor #ace,
#editor h2,
#editor .frontmatter {
width: 95%;
max-width: 960px;
margin: 1em auto 0;
}
#editor h2 {
margin: 1.5em auto 1em;
color: rgba(0, 0, 0, 0.3);
font-weight: 500;
}
#editor .ace_gutter {
background-color: #fff;
}
/* * * * * * * * * * * * * * * *
* EDITOR - MARKDOWN *
* * * * * * * * * * * * * * * */
.frontmatter {
column-count: 3;
column-gap: 1em;
column-fill: balance;
/* display: flex; */
/* flex-wrap: wrap; */
/* justify-content: space-between; */
/* flex-grow: 1; */
}
.frontmatter label {
display: block;
width: calc(100% - 1em);
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.frontmatter label,
.frontmatter h3 {
font-weight: 500;
margin: 0 0;
color: rgba(0, 0, 0, 0.6);
}
.frontmatter input,
.frontmatter textarea {
display: block;
width: 100%;
border: 0;
margin-top: .5em;
padding: 0;
line-height: 1;
}
.frontmatter .block,
.frontmatter fieldset[data-type="array"],
.button {
position: relative;
background: #fff;
border-radius: .2em;
border: 1px solid rgba(0, 0, 0, 0.075);
padding: .5em;
break-inside: avoid;
margin: 0 0 1em;
width: 100%;
display: inline-block;
}
.frontmatter fieldset[data-type="object"] {
position: relative;
margin: 0;
}
.frontmatter .button {
background-color: #2196f3;
color: #fff;
cursor: pointer;
text-align: center;
}
[data-type="array-item"] {
position: relative;
}
[data-type="array-item"] .action {
top: 0;
right: 0;
}
.frontmatter textarea {
resize: none;
}
[data-type="array-item"] input {
width: calc(100% - 1em);
}
.block .action,
fieldset .action {
position: absolute;
top: .5em;
right: .5em;
}
.block>.action,
fieldset>.action {
opacity: 0;
}
.block:hover>.action,
fieldset:hover>.action {
opacity: 1;
}
.block .action.add,
fieldset .action.add {
right: 1.5em;
}
.frontmatter .action i {
padding: 0;
font-size: 1em;
}
fieldset {
border: 0;
padding: 0;
}
.frontmatter>fieldset h3,
.frontmatter>.group h3 {
font-size: 1.5em;
margin-bottom: .5em;
}
fieldset h3,
.group h3 {
font-size: 0.9em;
}
/* * * * * * * * * * * * * * * *
* ACTION *
* * * * * * * * * * * * * * * */
.action {
display: inline-block;
cursor: pointer;
transition: 0.2s ease all;
border: 0;
margin: 0;
color: #546E7A;
border-radius: 50%;
background: transparent;
padding: 0;
box-shadow: 0 0 0 0;
vertical-align: middle;
text-align: left;
position: relative;
}
.action.disabled {
opacity: 0.2;
cursor: not-allowed;
}
.action i {
padding: 0.4em;
-webkit-transition: 0.2s ease-in-out all;
transition: 0.2s ease-in-out all;
border-radius: 50%;
}
.action:hover {
background-color: rgba(0, 0, 0, .1);
}
.action ul {
position: absolute;
top: 0;
color: #7d7d7d;
list-style: none;
margin: 0;
padding: 0;
flex-direction: column;
display: flex;
}
.action ul li {
line-height: 1;
padding: .7em;
transition: .1s ease background-color;
}
.action ul li:hover {
background-color: rgba(0, 0, 0, 0.04);
}
#click-overlay {
display: none;
position: fixed;
cursor: pointer;
top: 0;
left: 0;
height: 100%;
width: 100%;
}
#click-overlay.active {
display: block;
}
.action .counter {
display: block;
position: absolute;
bottom: 0;
right: 0;
background: #2196f3;
color: #fff;
border-radius: 50%;
font-size: .75em;
width: 1.5em;
height: 1.5em;
text-align: center;
line-height: 1.25em;
border: 2px solid white;
}
/* SIDEBAR */
/* * * * * * * * * * * * * * * *
* DROPDOWN *
* * * * * * * * * * * * * * * */
.dropdown {
position: fixed;
top: -100%;
right: -100%;
visibility: hidden;
display: flex;
flex-direction: column;
border-radius: .1em;
border-top-left-radius: 0;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
background: #fff;
z-index: 9999999;
}
.dropdown.active {
visibility: visible;
}
.dropdown .action {
padding: .7em;
}
.dropdown i {
padding: 0;
vertical-align: middle;
}
.dropdown span {
display: inline-block;
margin-left: .5em;
font-size: .9em;
}
/* * * * * * * * * * * * * * * *
* BREADCRUMBS *
* * * * * * * * * * * * * * * */
#previous {
margin-left: -.5em;
}
#breadcrumbs {
min-width: 7em;
}
#breadcrumbs.active {
top: 0;
left: 0;
right: auto;
}
/* PREVIEWER */
#previewer {
background-color: rgba(0, 0, 0, 0.9);
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 9999;
overflow: hidden;
}
#previewer .bar {
width: 100%;
text-align: right;
display: flex;
padding: 0.5em 0.5em 0.5em 1em;
height: 3.7em;
}
#previewer .action:first-of-type {
margin-right: auto;
}
#previewer .action i {
color: #fff;
}
#previewer .action:hover {
background-color: rgba(255, 255, 255, 0.3)
}
#previewer .action span {
display: none;
}
#previewer .preview {
margin: 2em auto 4em;
max-width: 80%;
text-align: center;
height: calc(100vh - 9.7em);
}
#previewer .preview pre {
text-align: left;
overflow: auto;
}
#previewer .preview pre,
#previewer .preview video,
#previewer .preview img {
max-height: 100%;
margin: 0;
}
#previewer .pdf {
width: 100%;
height: 100%;
}
#previewer h2.message {
color: rgba(255,255,255,0.5)
}
/* * * * * * * * * * * * * * * *
* PROMPT *
* * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * *
* FOOTER *
* * * * * * * * * * * * * * * */
.credits {
font-size: 0.6em;
margin: 3em 2.5em;
color: #a5a5a5;
}
.credits a,
.credits a:hover {
color: inherit;
}
/* * * * * * * * * * * * * * * *
* MEDIA QUERIES *
* * * * * * * * * * * * * * * */
@media screen and (max-width: 850px) {
.frontmatter {
column-count: 2;
}
}
@media screen and (max-width: 650px) {
body {
transition: .2s ease padding;
}
.mobile-only {
display: inherit !important;
}
#bottom-bar>*:first-child {
max-width: calc(100% - 16em) !important;
}
#main-actions {
position: fixed;
top: -100%;
right: -100%;
visibility: hidden;
display: flex;
flex-direction: column;
border-radius: .1em;
border-top-left-radius: 0;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
background: #fff;
z-index: 9999999;
}
#main-actions.active {
right: .5em;
top: 4.5em;
visibility: visible;
}
#main-actions .action {
padding: .7em;
border-radius: 0;
align-items: center;
}
#main-actions .action:hover {
background-color: rgba(0, 0, 0, 0.04);
}
#main-actions i {
padding: 0;
vertical-align: middle;
}
#main-actions .action:hover i {
padding: 0;
background-color: transparent;
}
#main-actions span {
display: inline-block;
margin-left: .5em;
font-size: .9em;
}
#listing.list .item .size,
#listing.list .item .modified {
display: none;
}
#listing.list .item .name {
width: 100%;
}
.frontmatter {
column-count: 1;
}
}
@media screen and (max-width: 450px) {
#bottom-bar p {
display: none !important;
}
}
/* * * * * * * * * * * * * * * *
* ANIMATIONS *
* * * * * * * * * * * * * * * */
@keyframes spin {
100% {
-webkit-transform: rotate(-360deg);
transform: rotate(-360deg);
}
}