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

github.com/EmielH/hallo-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/scss/hallo/_base.scss')
-rw-r--r--assets/scss/hallo/_base.scss46
1 files changed, 46 insertions, 0 deletions
diff --git a/assets/scss/hallo/_base.scss b/assets/scss/hallo/_base.scss
new file mode 100644
index 0000000..6dea8c5
--- /dev/null
+++ b/assets/scss/hallo/_base.scss
@@ -0,0 +1,46 @@
+html,
+body {
+ color: $default-light;
+ margin: 1rem;
+ padding: 0;
+}
+
+html {
+ font-family: $sans-serif;
+ font-size: 16px;
+ overflow-y: auto;
+
+ @media (min-width: 600px) {
+ font-size: 18px;
+ }
+}
+
+body {
+ background-color: $background-1;
+}
+
+a {
+ @include transition(color .2s ease-out);
+ color: $default-light;
+
+ &:hover {
+ color: $default-dark;
+ }
+}
+
+h1 {
+ font-size: 9rem;
+}
+
+h2 {
+ font-size: 3rem;
+ font-weight: normal;
+}
+
+img.portrait {
+ border-radius: 50%;
+ border: 10px solid $default-light;
+ margin: 2em 3em;
+ width: 300px;
+ height: 300px;
+} \ No newline at end of file