mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-22 07:15:25 +00:00
Autogenerate services.m3o.com (#37)
* Autogenerate services.m3o.com * Openapi for all * Gen * Fix * Whaat * Fix dep * Fix * Hmm * Install make * Debug * Debug 1 * Location -> locations * Fix * Intall protoc gen micro * F * F * F * Push * Rename secret * Fix npm install * Fix script * Fix v2 * Ignore errors * Ignore v2 * F * F * F * Docs index * Add hugo theme * Hugo tania fixes * Change gen * Change gen 2 * Install hugo * Change gen * Gen fix * Change hugo install * Change hugo install * CNAME * Change articles wording * Tiny fix * Fix gen * Redoc it all * Fix gen * Fixing up protos * Fix proto * Fix gen * Fix * Trigger build * Fix copy * Openapi docs * Flatten * Changes * No date vol2 * Changes * Add make to chat * Fixes * Change * api spec * replace RSS * fix link * Dont continue on error * increase the width * use micro at master * change box colours * move some things * Pushing new readmes to see how they look like * Add skip file * Readmes * Nicer api link * Remove stutter * FIx mistake * set service font weight * Messages readme fix * add other font bold * Notes * Remove post from url * Revert "Remove post from url" This reverts commit 5fea2c23d0bafa910f5dc4d4cc63f71f578530e3. * move exampleSite to site * replace exampleSite with site * update readme * use filename for post * update index * Add source urls * set source as params * set source as params * Fix entries * Generator in go * Fixes to generator * F * Change doc gen * FIx cname * Fixing protos * Change to makefiles * Fix gen script Co-authored-by: Asim Aslam <asim@aslam.me>
This commit is contained in:
51
docs/hugo-tania/assets/sass/base/_dark.scss
Normal file
51
docs/hugo-tania/assets/sass/base/_dark.scss
Normal file
@@ -0,0 +1,51 @@
|
||||
@media (prefers-color-scheme: dark) {
|
||||
:root {
|
||||
--color-mode: dark;
|
||||
}
|
||||
|
||||
:root:not([data-user-color-scheme]) {
|
||||
--h1-color: white;
|
||||
--font-color: #b3b9c5;
|
||||
--heading-color: #ffd479;
|
||||
--dark-font-color: #ced4da;
|
||||
--background: #1f2022;
|
||||
--medium-font-color: #dee2e6;
|
||||
--light-font-color: #868e96;
|
||||
--light-background: #2D2D31;
|
||||
--light-background-hover: #3b3b3e;
|
||||
--code-background-color: #2e2e30;
|
||||
--border: #404040;
|
||||
--link-color: #6ab0f3;
|
||||
--link-color-darker: #4a72a5;
|
||||
--link-hover-color: #e1a6f2;
|
||||
--navbar-color: #1d1d1d;
|
||||
--blockquote: #2b2b2b;
|
||||
--blockquote-left: #191919;
|
||||
--transparent-text: rgba(255, 255, 255, 0.7);
|
||||
--transparent-bg: rgba(0, 0, 0, 0.2);
|
||||
--light-transparent-bg: rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
}
|
||||
|
||||
[data-user-color-scheme='dark'] {
|
||||
--h1-color: white;
|
||||
--font-color: #b3b9c5;
|
||||
--heading-color: #ffd479;
|
||||
--dark-font-color: #ced4da;
|
||||
--background: #1f2022;
|
||||
--medium-font-color: #dee2e6;
|
||||
--light-font-color: #868e96;
|
||||
--light-background: #2D2D31;
|
||||
--light-background-hover: #3b3b3e;
|
||||
--code-background-color: #2e2e30;
|
||||
--border: #404040;
|
||||
--link-color: #6ab0f3;
|
||||
--link-color-darker: #4a72a5;
|
||||
--link-hover-color: #e1a6f2;
|
||||
--navbar-color: #1d1d1d;
|
||||
--blockquote: #2b2b2b;
|
||||
--blockquote-left: #191919;
|
||||
--transparent-text: rgba(255, 255, 255, 0.7);
|
||||
--transparent-bg: rgba(0, 0, 0, 0.2);
|
||||
--light-transparent-bg: rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
29
docs/hugo-tania/assets/sass/base/_grid.scss
Normal file
29
docs/hugo-tania/assets/sass/base/_grid.scss
Normal file
@@ -0,0 +1,29 @@
|
||||
/* Grid and flex */
|
||||
|
||||
.flex {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.flex-row {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 800px) {
|
||||
.flex-row {
|
||||
flex-direction: row;
|
||||
}
|
||||
}
|
||||
|
||||
.flex-col {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.flex-two-thirds {
|
||||
flex: 2;
|
||||
}
|
||||
|
||||
.justify-center {
|
||||
justify-content: center;
|
||||
}
|
||||
171
docs/hugo-tania/assets/sass/base/_headings.scss
Normal file
171
docs/hugo-tania/assets/sass/base/_headings.scss
Normal file
@@ -0,0 +1,171 @@
|
||||
/* Headings */
|
||||
|
||||
h1 {
|
||||
color: var(--h1-color);
|
||||
}
|
||||
|
||||
h3,
|
||||
h4 {
|
||||
color: var(--medium-font-color);
|
||||
}
|
||||
|
||||
h2,
|
||||
h5 {
|
||||
color: var(--heading-color);
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5 {
|
||||
margin: 0 0 1.5rem 0;
|
||||
font-weight: 700;
|
||||
line-height: 1.2;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
h1:not(:first-child),
|
||||
h2:not(:first-child),
|
||||
h3:not(:first-child),
|
||||
h4:not(:first-child) {
|
||||
margin-top: 3rem;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2.5rem;
|
||||
line-height: 1.1;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 1.75rem;
|
||||
padding-bottom: 0.5rem;
|
||||
border-bottom: 4px solid var(--light-background);
|
||||
|
||||
code {
|
||||
font-size: 1.75rem !important;
|
||||
}
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.5rem;
|
||||
color: var(--font-color);
|
||||
font-weight: 600;
|
||||
margin-bottom: 1rem;
|
||||
|
||||
code {
|
||||
font-size: 1.4rem !important;
|
||||
}
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 1.3rem;
|
||||
color: var(--font-color);
|
||||
font-weight: 500;
|
||||
margin-bottom: 1rem;
|
||||
border-bottom: 2px solid var(--light-background);
|
||||
padding-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: 1.2rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 800px) {
|
||||
h1 {
|
||||
font-size: 3rem;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 1.9rem;
|
||||
|
||||
code {
|
||||
font-size: 1.9rem !important;
|
||||
}
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.7rem;
|
||||
color: var(--font-color);
|
||||
font-weight: 600;
|
||||
|
||||
code {
|
||||
font-size: 1.6rem !important;
|
||||
}
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-weight: 400;
|
||||
font-size: 1.4rem;
|
||||
}
|
||||
}
|
||||
|
||||
a {
|
||||
&.link {
|
||||
display: block;
|
||||
padding: 0.25rem 0;
|
||||
margin: 0.25rem 0;
|
||||
border-radius: 0.35rem;
|
||||
font-weight: 600;
|
||||
color: var(--dark-font-color);
|
||||
|
||||
&:hover {
|
||||
color: var(--link-color);
|
||||
}
|
||||
}
|
||||
|
||||
&.button {
|
||||
display: inline-block;
|
||||
border: 2px solid var(--link-color);
|
||||
padding: 0.3rem 0.6rem;
|
||||
margin-right: 0.75rem;
|
||||
font-weight: 500;
|
||||
background: var(--link-color);
|
||||
color: white;
|
||||
border-radius: 0.35rem;
|
||||
font-size: 0.9rem;
|
||||
|
||||
&.large {
|
||||
padding: 0.8rem 1rem;
|
||||
font-size: 1.05rem;
|
||||
}
|
||||
|
||||
&.secondary {
|
||||
border: 2px solid #edf2ff;
|
||||
background: #edf2ff;
|
||||
color: #3b5bdb;
|
||||
}
|
||||
|
||||
&:hover, &.secondary:hover {
|
||||
border: 2px solid var(--link-color-darker);
|
||||
background: var(--link-color-darker);
|
||||
color: white;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 800px) {
|
||||
a.button {
|
||||
font-size: 0.9rem;
|
||||
|
||||
&.large {
|
||||
padding: 1rem 1.5rem;
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
p.subtitle {
|
||||
color: var(--medium-font-color);
|
||||
font-size: 1.3rem;
|
||||
font-weight: 300;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 800px) {
|
||||
p.subtitle {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
19
docs/hugo-tania/assets/sass/base/_links.scss
Normal file
19
docs/hugo-tania/assets/sass/base/_links.scss
Normal file
@@ -0,0 +1,19 @@
|
||||
/* Links */
|
||||
|
||||
a {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
|
||||
&.image-link {
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
code[class*='language-'] {
|
||||
color: var(--link-color) !important;
|
||||
|
||||
&:hover {
|
||||
background: var(--link-color) !important;
|
||||
color: white !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
379
docs/hugo-tania/assets/sass/base/_normalize.scss
Normal file
379
docs/hugo-tania/assets/sass/base/_normalize.scss
Normal file
@@ -0,0 +1,379 @@
|
||||
/*! 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;
|
||||
}
|
||||
5
docs/hugo-tania/assets/sass/base/_reset.scss
Normal file
5
docs/hugo-tania/assets/sass/base/_reset.scss
Normal file
@@ -0,0 +1,5 @@
|
||||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
179
docs/hugo-tania/assets/sass/base/_scaffolding.scss
Normal file
179
docs/hugo-tania/assets/sass/base/_scaffolding.scss
Normal file
@@ -0,0 +1,179 @@
|
||||
/* Scaffolding */
|
||||
|
||||
html {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Roboto',
|
||||
Roboto, Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI',
|
||||
'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
||||
color: var(--font-color);
|
||||
font-weight: 400;
|
||||
font-size: 1rem;
|
||||
line-height: 1.75;
|
||||
}
|
||||
|
||||
body {
|
||||
background: var(--background);
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
section {
|
||||
margin: 2rem 0;
|
||||
|
||||
&:first-of-type {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
>h2 {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size: 1.6rem;
|
||||
margin-top: 0;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 800px) {
|
||||
section>h2 {
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
.index h2,
|
||||
section>h2 {
|
||||
border-bottom-width: 0;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 800px) {
|
||||
|
||||
.index h2,
|
||||
section>h2 {
|
||||
border-bottom-width: 4px;
|
||||
}
|
||||
}
|
||||
|
||||
a.section-button {
|
||||
font-weight: 500;
|
||||
background: var(--light-background);
|
||||
color: var(--dark-font-color);
|
||||
padding: 0.4rem 0.6rem;
|
||||
font-size: 0.8rem;
|
||||
border-radius: 0.3rem;
|
||||
border-width: 0 !important;
|
||||
white-space: nowrap;
|
||||
line-height: 1;
|
||||
margin-left: 2rem;
|
||||
margin-top: 0.5rem;
|
||||
|
||||
&:hover {
|
||||
background: var(--light-background-hover);
|
||||
color: var(--heading-color);
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 800px) {
|
||||
section {
|
||||
margin: 3.5rem 0;
|
||||
|
||||
>h2 {
|
||||
font-size: 2rem;
|
||||
margin: 0 0 1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 1025px;
|
||||
padding: 0 1.5rem;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
|
||||
&.page p {
|
||||
max-width: 600px;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 800px) {
|
||||
.container {
|
||||
padding: 0 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
img {
|
||||
display: inline-block;
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
p,
|
||||
ol,
|
||||
ul,
|
||||
dl,
|
||||
table,
|
||||
blockquote {
|
||||
font-size: 1.05rem;
|
||||
margin: 0 0 1.5rem 0;
|
||||
}
|
||||
|
||||
ul {
|
||||
padding: 0 1rem;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 800px) {
|
||||
|
||||
p,
|
||||
ol,
|
||||
ul,
|
||||
dl,
|
||||
table,
|
||||
blockquote {
|
||||
font-size: 1.125rem;
|
||||
}
|
||||
|
||||
ul {
|
||||
padding: 0 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
ul li p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
ul li ul {
|
||||
padding-left: 1rem;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
ul li ul li {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
ol li ol {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.task-list-item [type='checkbox'] {
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
margin: 2rem 0;
|
||||
padding: 1rem;
|
||||
background: var(--blockquote);
|
||||
font-weight: 400;
|
||||
border-left: 5px solid var(--blockquote-left);
|
||||
}
|
||||
|
||||
blockquote :not(pre)>code[class*='language-'] {
|
||||
background: rgba(0, 0, 0, 0.1) !important;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 800px) {
|
||||
blockquote {
|
||||
padding: 2rem 0 2rem 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
::selection {
|
||||
background: #3b5bdb;
|
||||
color: white;
|
||||
}
|
||||
21
docs/hugo-tania/assets/sass/base/_variables.scss
Normal file
21
docs/hugo-tania/assets/sass/base/_variables.scss
Normal file
@@ -0,0 +1,21 @@
|
||||
:root {
|
||||
--color-mode: light;
|
||||
--h1-color: #343a40;
|
||||
--font-color: #495057;
|
||||
--heading-color: #343a40;
|
||||
--background: white;
|
||||
--dark-font-color: #1b1d25;
|
||||
--medium-font-color: #60656c;
|
||||
--light-font-color: #858b93;
|
||||
--light-background: #f1f4f8;
|
||||
--light-background-hover: #e1e6ed;
|
||||
--border: #d6d9de;
|
||||
--link-color: #5183f5;
|
||||
--link-color-darker: #364fc7;
|
||||
--navbar-color: #1b1d25;
|
||||
--blockquote: #f9f9f9;
|
||||
--blockquote-left: #e3e6eb;
|
||||
--transparent-text: rgba(0, 0, 0, 0.7);
|
||||
--transparent-bg: rgba(0, 0, 0, 0.05);
|
||||
--light-transparent-bg: rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
Reference in New Issue
Block a user