Commit 2dd2a4f7 authored by Romain Courteaud's avatar Romain Courteaud

erp5_core: viewer css

parent 0169e234
div[data-gadget-url$="gadget_html_viewer.html"] { @sans-serif: 'Open Sans', Helvetica, Arial, sans-serif;
max-width: 50em; @monospace: "Courier New", Courier, monospace;
@serif: Cambria, "Hoefler Text", Utopia, "Liberation Serif", "Nimbus Roman No9 L Regular", Times, "Times New Roman", serif;
/* Set the global variables for everything. Change these to use your own fonts/colours. */ @margin-size: 6pt;
@border-size: 2px;
/* Set sans-serif & mono fonts */ @border-type: solid;
--sans-font: -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir, "Nimbus Sans L", Roboto, Noto, "Segoe UI", Arial, Helvetica, "Helvetica Neue", sans-serif; @colorsubheaderbackground: #0E81C2;
--mono-font: Consolas, Menlo, Monaco, "Andale Mono", "Ubuntu Mono", monospace; @bold-font-weight: 600;
@black: #1F1F1F;
/* Body font size. By default, effectively 18.4px, based on 16px as 'root em' */ @colorforeground: @black;
--base-fontsize: 1.15rem;
/* Major third scale progression - see https://type-scale.com/ */
--header-scale: 1.25;
/* Line height is set to the "Golden ratio" for optimal legibility */
--line-height: 1.618;
/* Default (light) theme */
--bg: #FFF;
--accent-bg: #F5F7FF;
--text: #212121;
--text-light: #585858;
--border: #D8DAE1;
--accent: #0D47A1;
--accent-light: #90CAF9;
--code: #D81B60;
/* Dark theme */
@media (prefers-color-scheme: dark) {
--bg: #212121;
--accent-bg: #2B2B2B;
--text: #DCDCDC;
--text-light: #ABABAB;
--border: #666;
--accent: #FFB300;
--accent-light: #FFECB3;
--code: #F06292;
img { div[data-gadget-url$="gadget_html_viewer.html"] {
opacity: .6; max-width: 50em;
}
}
* {
/* Set the font globally */
font-family: var(--sans-font);
}
html {
font-size: 16px;
}
/* Make the body a nice central block */
body {
color: var(--text);
background: var(--bg);
font-size: var(--base-fontsize);
line-height: var(--line-height);
margin: 0;
}
/* Make the main element a nice central block */
main {
margin: 0 auto;
margin-top: 1rem;
max-width: 45rem;
padding: 0 .5rem;
}
/* Make the header bg full width, but the content inline with body */ display: block;
header { word-wrap: break-word;
background: var(--accent-bg); font-family: @serif;
border-bottom: 1px solid var(--border); text-align: justify;
padding: 1.5rem 15rem;
margin-bottom: 3rem;
}
/* Reduces header padding on smaller screens */ canvas, img, iframe, svg {
@media only screen and (max-width: 1200px) { max-width: 100%;
header { max-height: 100vh;
padding: 1rem;
} }
video {
nav { max-width: 100%;
text-align: center; height: auto;
max-height: 100vh;
} }
}
/* Remove margins for header text */
header h1,
header p {
margin: 0;
}
/* Format navigation */
nav {
font-size: 1rem;
line-height: 2;
padding: 1rem 0;
}
nav a {
margin: 1rem 1rem 0 0;
border: 1px solid var(--border);
border-radius: 5px;
color: var(--text) !important;
display: inline-block;
padding: .1rem 1rem;
text-decoration: none;
transition: .4s;
}
nav a:hover {
color: var(--accent) !important;
border-color: var(--accent);
}
nav a.current:hover {
text-decoration: none;
}
footer { h1 {
margin-top: 4rem; font-family: @serif;
padding: 2rem 1rem 1.5rem 1rem; font-size: 1.5em;
color: var(--text-light); text-transform: capitalize;
font-size: .9rem;
text-align: center; text-align: center;
border-top: 1px solid var(--border); }
}
/* Format headers */
h1 {
font-size: calc(var(--base-fontsize) * var(--header-scale) * var(--header-scale) * var(--header-scale) * var(--header-scale));
margin-top: calc(var(--line-height) * 1.5rem);
}
h2 {
font-size: calc(var(--base-fontsize) * var(--header-scale) * var(--header-scale) * var(--header-scale));
margin-top: calc(var(--line-height) * 1.5rem);
}
h3 {
font-size: calc(var(--base-fontsize) * var(--header-scale) * var(--header-scale));
margin-top: calc(var(--line-height) * 1.5rem);
}
h4 {
font-size: calc(var(--base-fontsize) * var(--header-scale));
margin-top: calc(var(--line-height) * 1.5rem);
}
h5 { h2 {
font-size: var(--base-fontsize); font-family: @sans-serif;
margin-top: calc(var(--line-height) * 1.5rem); font-size: 1.3em;
} text-transform: capitalize;
}
h6 { h3 {
font-size: calc(var(--base-fontsize) / var(--header-scale)); font-family: @sans-serif;
margin-top: calc(var(--line-height) * 1.5rem); font-size: 1.1em;
} text-transform: uppercase;
}
/* Format links & buttons */ h4 {
a, font-family: @sans-serif;
a:visited { font-size: 1.1em;
color: var(--accent); }
}
a:hover { blockquote {
text-decoration: none; margin: @margin-size @margin-size @margin-size 0;
} padding-left: @margin-size;
border-left: @border-size @border-type @colorsubheaderbackground;
}
a button, i, cite, em, var, address, dfn {
button, font-style: italic;
input[type="submit"], }
input[type="reset"],
input[type="button"] {
border: none;
border-radius: 5px;
background: var(--accent);
font-size: 1rem;
color: var(--bg);
padding: .7rem .9rem;
margin: .5rem 0;
transition: .4s;
}
a button[disabled], strong, b, figcaption {
button[disabled], font-weight: @bold-font-weight;
input[type="submit"][disabled], }
input[type="reset"][disabled],
input[type="button"][disabled] {
cursor: default;
opacity: .5;
cursor: not-allowed;
}
button:focus, u, ins {
button:enabled:hover, text-decoration: underline;
input[type="submit"]:focus, }
input[type="submit"]:enabled:hover,
input[type="reset"]:focus,
input[type="reset"]:enabled:hover,
input[type="button"]:focus,
input[type="button"]:enabled:hover {
opacity: .8;
}
/* Format the expanding box */ s, strike, del {
details { text-decoration: line-through;
padding: .6rem 1rem; }
background: var(--accent-bg);
border: 1px solid var(--border);
border-radius: 5px;
margin-bottom: 1rem;
}
summary { tt, code, kbd, samp {
cursor: pointer; font-family: @monospace;
font-weight: bold; }
}
details[open] { code, kbd {
padding-bottom: .75rem; color: #2CC32C;
} }
details[open] summary { q {
margin-bottom: .5rem; display: inline;
} &:before {
content: open-quote;
}
&:after {
content: close-quote;
}
quotes: initial;
}
details[open]>*:last-child { pre, xmp, plaintext, listing {
margin-bottom: 0; display: block;
} white-space: pre-wrap;
font-family: @monospace;
}
/* Format tables */ table {
table { border: 1px solid @colorforeground;
width: 100%;
margin:0;
padding:0;
border-collapse: collapse; border-collapse: collapse;
width: 100% border-spacing: 0;
}
td,
th {
border: 1px solid var(--border);
text-align: left;
padding: .5rem;
}
th {
background: var(--accent-bg);
font-weight: bold;
}
tr:nth-child(even) { tr {
/* Set every other cell slightly darker. Improves readability. */ border: 1px solid @colorforeground;
background: var(--accent-bg); padding-top: @margin-size;
} padding-bottom: @margin-size;
table caption {
font-weight: bold;
margin-bottom: .5rem;
}
/* Lists */
ol,
ul {
padding-left: 3rem;
}
/* Format forms */
textarea,
select,
input {
font-size: inherit;
font-family: inherit;
padding: .5rem;
margin-bottom: .5rem;
color: var(--text);
background: var(--bg);
border: 1px solid var(--border);
border-radius: 5px;
box-shadow: none;
box-sizing: border-box;
width: 60%;
}
/* Make the textarea wider than other inputs */
textarea {
width: 80%
}
/* Makes input fields wider on smaller screens */
@media only screen and (max-width: 720px) {
textarea,
select,
input {
width: 100%;
} }
} th, td {
/* Ensures the checkbox and radio inputs do not have a set width like other input fields */
input[type="checkbox"], input[type="radio"]{
width: auto;
}
/* Without this any HTML using <fieldset> shows ugly borders and has additional padding/margin. (Issue #3) */
fieldset {
border: 0;
padding: 0;
margin: 0;
}
/* Misc body elements */
hr {
color: var(--border);
border-top: 1px;
margin: 1rem auto;
}
mark {
padding: 3px 6px;
background: var(--accent-light);
}
main img {
max-width: 100%;
border-radius: 5px;
}
figure {
margin: 0;
}
figcaption {
font-size: .9rem;
color: var(--text-light);
text-align: center; text-align: center;
margin-bottom: 1rem; padding-top: @margin-size;
} padding-bottom: @margin-size;
}
blockquote {
margin: 2rem 0 2rem 2rem;
padding: .4rem .8rem;
border-left: .35rem solid var(--accent);
opacity: .8;
font-style: italic;
}
cite {
font-size: 0.9rem;
color: var(--text-light);
font-style: normal;
}
/* Use mono font for code like elements */ th {
code, text-transform: uppercase;
pre, }
kbd, }
samp {
font-family: var(--mono-font);
font-size: 1.1rem;
color: var(--code);
}
kbd { ul {
border: 1px solid var(--code); list-style: disc;
border-bottom: 3px solid var(--code); li {
border-radius: 5px; margin-left: 2em;
padding: .1rem; }
} }
pre { ol {
padding: 1rem 1.4rem; list-style: decimal;
max-width: 100%; li {
overflow: auto; margin-left: 2em;
background: var(--accent-bg); }
border: 1px solid var(--border); }
border-radius: 5px;
}
/* Fix embedded code within pre */
pre code {
color: var(--text);
background: none;
margin: 0;
padding: 0;
}
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment