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

github.com/curttimson/hugo-theme-massively.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'static/assets/sass/components/_icons.scss')
-rw-r--r--static/assets/sass/components/_icons.scss52
1 files changed, 52 insertions, 0 deletions
diff --git a/static/assets/sass/components/_icons.scss b/static/assets/sass/components/_icons.scss
new file mode 100644
index 0000000..fb9e829
--- /dev/null
+++ b/static/assets/sass/components/_icons.scss
@@ -0,0 +1,52 @@
+///
+/// Massively by HTML5 UP
+/// html5up.net | @ajlkn
+/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+///
+
+/* Icons */
+
+ ul.icons {
+ cursor: default;
+ list-style: none;
+ padding-left: 0;
+
+ li {
+ display: inline-block;
+ padding: 0 0.5rem 0 0;
+ vertical-align: middle;
+
+ &:last-child {
+ padding-right: 0;
+ }
+
+ .icon {
+ &:before {
+ width: 2.25rem;
+ height: 2.25rem;
+ line-height: 2.25rem;
+ display: inline-block;
+ text-align: center;
+ border-radius: 100%;
+ font-size: 1.25rem;
+ }
+ }
+ }
+
+ &.alt {
+ li {
+ .icon {
+ &:before {
+ @include vendor('transition', (
+ 'color #{_duration(transition)} ease-in-out',
+ 'background-color #{_duration(transition)} ease-in-out',
+ 'border-color #{_duration(transition)} ease-in-out',
+ 'box-shadow #{_duration(transition)} ease-in-out'
+ ));
+
+ font-size: 1rem;
+ }
+ }
+ }
+ }
+ } \ No newline at end of file