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

github.com/picturepan2/spectre.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYan Zhu <picturepan2@hotmail.com>2017-08-29 13:07:53 +0300
committerYan Zhu <picturepan2@hotmail.com>2017-08-29 13:07:53 +0300
commite78b3c34348f26d40a813612c5a3786f1c56607a (patch)
treef857491026c5f728fe95fe1564ec30c931a1b30a /src/_chips.scss
parent66c492fd05c2d720c81e2be8d6845560b868e7ff (diff)
Initial SASS build
Diffstat (limited to 'src/_chips.scss')
-rw-r--r--src/_chips.scss24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/_chips.scss b/src/_chips.scss
new file mode 100644
index 0000000..0610470
--- /dev/null
+++ b/src/_chips.scss
@@ -0,0 +1,24 @@
+// Chips
+.chip {
+ align-items: center;
+ background: $bg-color-dark;
+ border-radius: 5rem;
+ color: $gray-color-dark;
+ display: inline-flex;
+ height: $unit-6;
+ margin: $unit-h;
+ max-width: 100%;
+ padding: $unit-h ($unit-2 + $unit-h);
+ text-decoration: none;
+ vertical-align: middle;
+
+ &.active {
+ background: $primary-color;
+ color: $light-color;
+ }
+
+ .avatar {
+ margin-left: -($unit-2 + $unit-h);
+ margin-right: $unit-1;
+ }
+}