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

github.com/hivickylai/hugo-theme-sam.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVicky <vicky@vickylai.io>2018-02-14 09:42:43 +0300
committerVicky <vicky@vickylai.io>2018-02-14 09:42:43 +0300
commit3e29e1bb559ebacd4591e2b7577f898e319a53a6 (patch)
treea64ffabb4d48bbcc252349f52f91f0e7f284678b /sass/_elements.sass
Theme completed. Initial commit.v1.0
Diffstat (limited to 'sass/_elements.sass')
-rw-r--r--sass/_elements.sass73
1 files changed, 73 insertions, 0 deletions
diff --git a/sass/_elements.sass b/sass/_elements.sass
new file mode 100644
index 0000000..f43b6c5
--- /dev/null
+++ b/sass/_elements.sass
@@ -0,0 +1,73 @@
+#splash
+ margin: auto 0
+ height: 100vh
+ width: 45%
+ overflow: hidden
+ @media screen and (max-width: 736px)
+ width: 90%
+
+#big-link
+ font-family: $font
+ font-size: 3rem
+ font-weight: 300
+ margin-bottom: 2rem
+ line-height: 1.5em
+
+#title
+ margin-top: 3rem
+ font-family: $font
+ font-size: 2rem
+ line-height: 3rem
+ margin-bottom: 2rem
+
+#content
+ margin: 2rem 0
+ line-height: 2em
+ letter-spacing: 2px
+ & h1,h2,h3
+ margin: 1em 0em
+ text-align: left
+ & p
+ margin-bottom: 1em
+ line-height: 1.8
+ letter-spacing: 1.5px
+ & pre
+ border-radius: 2px
+ background-color: lighten($dark-grey, 10%)
+ padding: 1rem
+ & pre > code
+ border: none
+ & code
+ font-size: 0.9rem
+ font-family: 'Source Code Pro', monospace
+ background-color: lighten($dark-grey, 10%)
+ padding: 0.2rem
+ border-radius: 2px
+ overflow-x: scroll
+
+#tag
+ padding: 0.25em 0em
+ margin-right: 0.5em
+ opacity: 0.6
+
+.grid
+ display: grid
+ grid-gap: 20px
+ grid-template-columns: repeat(auto-fit, minmax(400px, 1fr))
+ grid-auto-rows: 400px
+ @media screen and (max-width: 736px)
+ grid-template-columns: repeat(auto-fit, minmax(100%, 1fr))
+
+.grid > div
+ background-color: transparent
+ overflow: hidden
+
+.grid > div > img
+ height: 100%
+ width: 100%
+ object-fit: cover
+
+.grid > div > a > img
+ height: 100%
+ width: 100%
+ object-fit: cover \ No newline at end of file