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

github.com/danielkvist/hugo-terrassa-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authordanielkvist <d94.zaragoza@gmail.com>2018-12-06 23:34:46 +0300
committerdanielkvist <d94.zaragoza@gmail.com>2018-12-06 23:34:46 +0300
commitf7661daa8fda52d967edd8b6675504777b660225 (patch)
tree2017db197a8adc6c2eef5fbab093ace9830c069f /static
parent6f816de446a8a87cef69e70283bc6f12c025fed5 (diff)
add extra CSS reset styles
Diffstat (limited to 'static')
-rw-r--r--static/css/reset.css31
1 files changed, 30 insertions, 1 deletions
diff --git a/static/css/reset.css b/static/css/reset.css
index 1e80b79..55cb02d 100644
--- a/static/css/reset.css
+++ b/static/css/reset.css
@@ -5,13 +5,17 @@ html {
*,
*::before,
*::after {
- box-sizing: inherit;
+ box-sizing: inherit;
}
*:focus {
outline: 0;
}
+a {
+ background-color: transparent;
+}
+
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Oxygen, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
font-kerning: auto;
@@ -31,3 +35,28 @@ h4 {
line-height: 1.2;
margin: 0;
}
+
+hr {
+ box-sizing: content-box;
+ height: 0;
+ overflow: visible;
+}
+
+img {
+ border-sytle: none;
+}
+
+main {
+ display: block;
+}
+
+pre,
+code,
+kbd {
+ font-family: monospace, monospace;
+ font-size: 1em;
+}
+
+select {
+ text-transform: none;
+}