summaryrefslogtreecommitdiff
path: root/assets/pure-extension.scss
diff options
context:
space:
mode:
Diffstat (limited to 'assets/pure-extension.scss')
-rw-r--r--assets/pure-extension.scss55
1 files changed, 55 insertions, 0 deletions
diff --git a/assets/pure-extension.scss b/assets/pure-extension.scss
new file mode 100644
index 0000000..b4c1ab5
--- /dev/null
+++ b/assets/pure-extension.scss
@@ -0,0 +1,55 @@
+@import 'variables';
+
+html, button, input, select, textarea, .pure-g [class *= "pure-u"] {
+ font-family: "Open Sans", "Roboto", sans-serif;
+ font-weight: 300;
+
+}
+
+.pure-g {
+ [class *= "pure-u"] {
+ box-sizing: border-box;
+ }
+}
+
+.pure-u {
+ flex-grow: 1;
+ width: 0;
+}
+
+.pure-menu-list ul ul {
+ // left padding for nested sections
+ padding-left: $padding-16;
+}
+
+.pure-menu-root {
+ // vertical space between root sections
+ > li {
+ padding-bottom: $padding-16;
+ }
+
+ // font weight only for root sections
+ > li > .section {
+ font-weight: 600;
+ }
+}
+
+.pure-menu-link, .pure-menu-heading {
+ color: $gray-800;
+ padding: $padding-4 $padding-16;
+ text-transform: capitalize;
+}
+
+.pure-menu-link {
+ &:hover, &.active {
+ background: none;
+ }
+
+ &:hover {
+ color: $gray-600;
+ }
+
+ &.active {
+ color: #1F37E6;
+ }
+} \ No newline at end of file