Upload files to "static/css"
Some checks failed
Export / Explore-GitHub-Actions (push) Has been cancelled
Some checks failed
Export / Explore-GitHub-Actions (push) Has been cancelled
This commit is contained in:
parent
31eb906211
commit
a8d8ce9600
4 changed files with 654 additions and 0 deletions
214
static/css/clym.css
Normal file
214
static/css/clym.css
Normal file
|
@ -0,0 +1,214 @@
|
|||
/*
|
||||
* OpenBSD License
|
||||
*
|
||||
* Copyright (c) 2017 lambda <lambda@fnord.one>
|
||||
*
|
||||
* Permission to use, copy, modify, and distribute this software for any
|
||||
* purpose with or without fee is hereby granted, provided that the
|
||||
* above copyright notice and this permission notice appear in all
|
||||
* copies.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
|
||||
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
|
||||
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
|
||||
* AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
|
||||
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
|
||||
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* ====================================================== */
|
||||
/* A basic style for wrapper main footer */
|
||||
/* ====================================================== */
|
||||
html{
|
||||
overflow-y:scroll;
|
||||
}
|
||||
html, body {
|
||||
margin: 0em;
|
||||
padding: 0em;
|
||||
min-height:100%;
|
||||
height: 100%;
|
||||
}
|
||||
body {
|
||||
position: relative;
|
||||
margin: 0 auto;
|
||||
padding: 0em 1em;
|
||||
}
|
||||
#wrapper {
|
||||
position: relative;
|
||||
width:100%;
|
||||
min-height: 100%;
|
||||
margin: 0em auto;
|
||||
}
|
||||
main {
|
||||
padding-bottom: 3em;
|
||||
height:100%;
|
||||
}
|
||||
main:after {
|
||||
display: block;
|
||||
width: 100%;
|
||||
content:"";
|
||||
clear: both;
|
||||
}
|
||||
footer {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 3em;
|
||||
bottom: 0em;
|
||||
text-align: center;
|
||||
}
|
||||
footer > p {
|
||||
display: block;
|
||||
text-align: center;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
/* ====================================================== */
|
||||
/* A basic style for header */
|
||||
/* ====================================================== */
|
||||
/* All Tags */
|
||||
header > div {
|
||||
display: block;
|
||||
margin: 0.5em auto auto auto;
|
||||
padding: 1ex;
|
||||
float: right;
|
||||
border: 1px solid transparent;
|
||||
min-width: auto;
|
||||
max-width: 100%;
|
||||
}
|
||||
/* ====================================================== */
|
||||
/* A basic responsive'ish ruleset */
|
||||
/* ====================================================== */
|
||||
@media only screen and (min-width: 360px) {
|
||||
#wrapper {
|
||||
font-size: 0.95em;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 800px) {
|
||||
#wrapper {
|
||||
max-width: 750px;
|
||||
font-size: 1em;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 1000px) {
|
||||
#wrapper {
|
||||
max-width: 800px;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 1025px) {
|
||||
#wrapper {
|
||||
max-width: 1000px;
|
||||
}
|
||||
}
|
||||
/* ====================================================== */
|
||||
/* A basic theme */
|
||||
/* ====================================================== */
|
||||
html, body {
|
||||
font-family: Arial, sans;
|
||||
color: #1f1f1f ;
|
||||
}
|
||||
main {
|
||||
line-height: 1.3em;
|
||||
}
|
||||
h1,h2,h3 {
|
||||
font-weight: bold;
|
||||
line-height: 1.8;
|
||||
margin: 0em;
|
||||
}
|
||||
h1 {
|
||||
font-size: 175%;
|
||||
}
|
||||
h2 {
|
||||
font-size: 150%;
|
||||
}
|
||||
h3 {
|
||||
font-size: 125%;
|
||||
}
|
||||
p {
|
||||
text-align: justify;
|
||||
}
|
||||
a {
|
||||
color: #3b5487;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:active, a:hover, a:focus {
|
||||
color: #203785;
|
||||
text-decoration: underline;
|
||||
}
|
||||
footer > p {
|
||||
display: block;
|
||||
text-align: center;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
/* default style for 'information' */
|
||||
article > header {
|
||||
font-weight: 900;
|
||||
font-size: 90%;
|
||||
text-align: center;
|
||||
}
|
||||
article > header > h1 > a {
|
||||
color: #1f1f1f ;
|
||||
text-decoration: none;
|
||||
}
|
||||
/* ====================================================== */
|
||||
/* A basic style for code */
|
||||
/* ====================================================== */
|
||||
.src, code {
|
||||
display:inline-block;
|
||||
padding: 1px 5px;
|
||||
border-radius: 3px;
|
||||
background-color: #e3f0ff;
|
||||
font-weight: 700;
|
||||
font-size: 0.8em;
|
||||
color: #3c3f42;
|
||||
}
|
||||
pre > code, pre.src {
|
||||
display: block;
|
||||
height: auto;
|
||||
padding: 1em;
|
||||
}
|
||||
/* ====================================================== */
|
||||
/* A basic style for posts */
|
||||
/* ====================================================== */
|
||||
article {
|
||||
display: block;
|
||||
float: left;
|
||||
clear:both;
|
||||
width: 100%;
|
||||
}
|
||||
article:after {
|
||||
display:block;
|
||||
height: 1em;
|
||||
content:"";
|
||||
clear:both;
|
||||
}
|
||||
article > header {
|
||||
display:block;
|
||||
margin: 0em;
|
||||
padding: 1em;
|
||||
border: 1px solid transparent;
|
||||
border-radius: 3px;
|
||||
-webkit-box-shadow: 1px 1px 5px 1px #1f1f1f;
|
||||
box-shadow: 1px 1px 5px 1px #1f1f1f;
|
||||
}
|
||||
article > header:after {
|
||||
display:block;
|
||||
width:100%;
|
||||
height: auto;
|
||||
content:"";
|
||||
clear:both;
|
||||
}
|
||||
article > header > .information {
|
||||
font-size: 80%;
|
||||
}
|
||||
article > header > h1 {
|
||||
float: left;
|
||||
margin: auto 1em;
|
||||
}
|
||||
article > header > p {
|
||||
float: left;
|
||||
margin-top: 5px;
|
||||
}
|
||||
article > header + h1 {
|
||||
margin-top: 1em;
|
||||
}
|
74
static/css/custom.css
Normal file
74
static/css/custom.css
Normal file
|
@ -0,0 +1,74 @@
|
|||
/* ==================================================================== */
|
||||
/* custom.css */
|
||||
/* ==================================================================== */
|
||||
/* use this file to tweak your styles by overriding others */
|
||||
|
||||
@import url("tufte.css");
|
||||
|
||||
/**
|
||||
/* Override some of pure.css's menu rules to get clym's */
|
||||
a.pure-menu-link {
|
||||
color: #3b5487;
|
||||
text-decoration: none;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
a.pure-menu-link:active, a.pure-menu-link:hover, a.pure-menu-link:focus {
|
||||
color: #203785;
|
||||
}
|
||||
|
||||
.intro {
|
||||
display: block;
|
||||
//border: 1px solid gray;
|
||||
font-size: 14px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
#wrapper {
|
||||
max-width: 750px !important;
|
||||
}
|
||||
|
||||
article > header {
|
||||
padding: 0px;
|
||||
border: 0px;
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
article > header > h1 {
|
||||
margin: 0 1em 0 0;
|
||||
text-align: left;
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
article:not(:only-child) {
|
||||
border-bottom: 1px solid gray;
|
||||
max-width: 600px;
|
||||
display:block;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
article:not(:only-child) h1 {
|
||||
margin-top: 20px;
|
||||
font-size: 16px;
|
||||
font-style: normal !important;
|
||||
}
|
||||
|
||||
article:not(:only-child) p {
|
||||
display: none;
|
||||
}
|
||||
|
||||
article p {
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
article > figure > img {
|
||||
max-width: 100%;
|
||||
width: 100% !important;
|
||||
}
|
||||
|
||||
|
||||
article > pre > code {
|
||||
overflow: overlay;
|
||||
}
|
||||
**/
|
349
static/css/normalize.css
vendored
Normal file
349
static/css/normalize.css
vendored
Normal file
|
@ -0,0 +1,349 @@
|
|||
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
|
||||
|
||||
/* Document
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Correct the line height in all browsers.
|
||||
* 2. Prevent adjustments of font size after orientation changes in iOS.
|
||||
*/
|
||||
|
||||
html {
|
||||
line-height: 1.15; /* 1 */
|
||||
-webkit-text-size-adjust: 100%; /* 2 */
|
||||
}
|
||||
|
||||
/* Sections
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove the margin in all browsers.
|
||||
*/
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Render the `main` element consistently in IE.
|
||||
*/
|
||||
|
||||
main {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the font size and margin on `h1` elements within `section` and
|
||||
* `article` contexts in Chrome, Firefox, and Safari.
|
||||
*/
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
margin: 0.67em 0;
|
||||
}
|
||||
|
||||
/* Grouping content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Add the correct box sizing in Firefox.
|
||||
* 2. Show the overflow in Edge and IE.
|
||||
*/
|
||||
|
||||
hr {
|
||||
box-sizing: content-box; /* 1 */
|
||||
height: 0; /* 1 */
|
||||
overflow: visible; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the inheritance and scaling of font size in all browsers.
|
||||
* 2. Correct the odd `em` font sizing in all browsers.
|
||||
*/
|
||||
|
||||
pre {
|
||||
font-family: monospace, monospace; /* 1 */
|
||||
font-size: 1em; /* 2 */
|
||||
}
|
||||
|
||||
/* Text-level semantics
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove the gray background on active links in IE 10.
|
||||
*/
|
||||
|
||||
a {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Remove the bottom border in Chrome 57-
|
||||
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
|
||||
*/
|
||||
|
||||
abbr[title] {
|
||||
border-bottom: none; /* 1 */
|
||||
text-decoration: underline; /* 2 */
|
||||
text-decoration: underline dotted; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct font weight in Chrome, Edge, and Safari.
|
||||
*/
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bolder;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the inheritance and scaling of font size in all browsers.
|
||||
* 2. Correct the odd `em` font sizing in all browsers.
|
||||
*/
|
||||
|
||||
code,
|
||||
kbd,
|
||||
samp {
|
||||
font-family: monospace, monospace; /* 1 */
|
||||
font-size: 1em; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct font size in all browsers.
|
||||
*/
|
||||
|
||||
small {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent `sub` and `sup` elements from affecting the line height in
|
||||
* all browsers.
|
||||
*/
|
||||
|
||||
sub,
|
||||
sup {
|
||||
font-size: 75%;
|
||||
line-height: 0;
|
||||
position: relative;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -0.25em;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -0.5em;
|
||||
}
|
||||
|
||||
/* Embedded content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove the border on images inside links in IE 10.
|
||||
*/
|
||||
|
||||
img {
|
||||
border-style: none;
|
||||
}
|
||||
|
||||
/* Forms
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Change the font styles in all browsers.
|
||||
* 2. Remove the margin in Firefox and Safari.
|
||||
*/
|
||||
|
||||
button,
|
||||
input,
|
||||
optgroup,
|
||||
select,
|
||||
textarea {
|
||||
font-family: inherit; /* 1 */
|
||||
font-size: 100%; /* 1 */
|
||||
line-height: 1.15; /* 1 */
|
||||
margin: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Show the overflow in IE.
|
||||
* 1. Show the overflow in Edge.
|
||||
*/
|
||||
|
||||
button,
|
||||
input { /* 1 */
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the inheritance of text transform in Edge, Firefox, and IE.
|
||||
* 1. Remove the inheritance of text transform in Firefox.
|
||||
*/
|
||||
|
||||
button,
|
||||
select { /* 1 */
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the inability to style clickable types in iOS and Safari.
|
||||
*/
|
||||
|
||||
button,
|
||||
[type="button"],
|
||||
[type="reset"],
|
||||
[type="submit"] {
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the inner border and padding in Firefox.
|
||||
*/
|
||||
|
||||
button::-moz-focus-inner,
|
||||
[type="button"]::-moz-focus-inner,
|
||||
[type="reset"]::-moz-focus-inner,
|
||||
[type="submit"]::-moz-focus-inner {
|
||||
border-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Restore the focus styles unset by the previous rule.
|
||||
*/
|
||||
|
||||
button:-moz-focusring,
|
||||
[type="button"]:-moz-focusring,
|
||||
[type="reset"]:-moz-focusring,
|
||||
[type="submit"]:-moz-focusring {
|
||||
outline: 1px dotted ButtonText;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the padding in Firefox.
|
||||
*/
|
||||
|
||||
fieldset {
|
||||
padding: 0.35em 0.75em 0.625em;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the text wrapping in Edge and IE.
|
||||
* 2. Correct the color inheritance from `fieldset` elements in IE.
|
||||
* 3. Remove the padding so developers are not caught out when they zero out
|
||||
* `fieldset` elements in all browsers.
|
||||
*/
|
||||
|
||||
legend {
|
||||
box-sizing: border-box; /* 1 */
|
||||
color: inherit; /* 2 */
|
||||
display: table; /* 1 */
|
||||
max-width: 100%; /* 1 */
|
||||
padding: 0; /* 3 */
|
||||
white-space: normal; /* 1 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
||||
*/
|
||||
|
||||
progress {
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the default vertical scrollbar in IE 10+.
|
||||
*/
|
||||
|
||||
textarea {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Add the correct box sizing in IE 10.
|
||||
* 2. Remove the padding in IE 10.
|
||||
*/
|
||||
|
||||
[type="checkbox"],
|
||||
[type="radio"] {
|
||||
box-sizing: border-box; /* 1 */
|
||||
padding: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the cursor style of increment and decrement buttons in Chrome.
|
||||
*/
|
||||
|
||||
[type="number"]::-webkit-inner-spin-button,
|
||||
[type="number"]::-webkit-outer-spin-button {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the odd appearance in Chrome and Safari.
|
||||
* 2. Correct the outline style in Safari.
|
||||
*/
|
||||
|
||||
[type="search"] {
|
||||
-webkit-appearance: textfield; /* 1 */
|
||||
outline-offset: -2px; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the inner padding in Chrome and Safari on macOS.
|
||||
*/
|
||||
|
||||
[type="search"]::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the inability to style clickable types in iOS and Safari.
|
||||
* 2. Change font properties to `inherit` in Safari.
|
||||
*/
|
||||
|
||||
::-webkit-file-upload-button {
|
||||
-webkit-appearance: button; /* 1 */
|
||||
font: inherit; /* 2 */
|
||||
}
|
||||
|
||||
/* Interactive
|
||||
========================================================================== */
|
||||
|
||||
/*
|
||||
* Add the correct display in Edge, IE 10+, and Firefox.
|
||||
*/
|
||||
|
||||
details {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/*
|
||||
* Add the correct display in all browsers.
|
||||
*/
|
||||
|
||||
summary {
|
||||
display: list-item;
|
||||
}
|
||||
|
||||
/* Misc
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Add the correct display in IE 10+.
|
||||
*/
|
||||
|
||||
template {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct display in IE 10.
|
||||
*/
|
||||
|
||||
[hidden] {
|
||||
display: none;
|
||||
}
|
17
static/css/style.css
Normal file
17
static/css/style.css
Normal file
|
@ -0,0 +1,17 @@
|
|||
/* =================================================================== */
|
||||
/* style.css for cl-yag */
|
||||
/* =================================================================== */
|
||||
@charset "utf-8";
|
||||
|
||||
|
||||
/* ~ PURE ~ */
|
||||
@import url("pure_r1.0.0/pure.css");
|
||||
|
||||
|
||||
/* ~ CLYM ~ */
|
||||
@import url("clym.css");
|
||||
|
||||
|
||||
/* ~ LAST ENTRY ~ */
|
||||
/* ~ use custom.css for overriding rules ~ */
|
||||
@import url("custom.css");
|
Loading…
Reference in a new issue