Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/danielkvist/hugo-piercer-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authordanielkvist <d94.zaragoza@gmail.com>2019-03-29 14:45:14 +0300
committerdanielkvist <d94.zaragoza@gmail.com>2019-03-29 14:45:14 +0300
commit4a5abd60525b19d3be5d120bcd52366bac84978e (patch)
treee5f1e0deb4499a861f63ec5bed50b5e1fa44bc23 /assets
parent67e64d0a301b6950c0c5c1d7283683c66ee372c8 (diff)
add base styles for more basic elements
Diffstat (limited to 'assets')
-rw-r--r--assets/css/base.css41
1 files changed, 38 insertions, 3 deletions
diff --git a/assets/css/base.css b/assets/css/base.css
index 05c5fd9..921bc43 100644
--- a/assets/css/base.css
+++ b/assets/css/base.css
@@ -12,6 +12,16 @@ body {
font-size: var(--base);
}
+blockquote {
+ color: var(--background);
+ background-color: var(--foreground);
+ padding: 0.75rem 1.45rem;
+}
+
+code {
+ font-size: var(--text);
+}
+
h1 {
font-size: var(--h1);
}
@@ -28,6 +38,12 @@ h4 {
font-size: var(--h4);
}
+h3,
+h4 {
+ margin-bottom: 0.75rem;
+ margin-top: 0.75rem;
+}
+
hr {
background-color: var(--separator);
border: none;
@@ -35,9 +51,9 @@ hr {
width: 50%;
}
-label {
- display: none;
- visibility: hidden;
+img {
+ height: auto;
+ width: 100;
}
input {
@@ -51,4 +67,23 @@ input {
input:required {
outline-color: var(--red);
+}
+
+label {
+ display: none;
+ visibility: hidden;
+}
+
+mark {
+ background-color: var(--yellow);
+}
+
+pre {
+ font-size: var(--p);
+ padding: 0.75rem 1.45rem;
+}
+
+svg {
+ height: auto;
+ width: 100%;
} \ No newline at end of file