summaryrefslogtreecommitdiff
path: root/source/bower_components/foundation/scss/foundation/components/_toolbar.scss
diff options
context:
space:
mode:
Diffstat (limited to 'source/bower_components/foundation/scss/foundation/components/_toolbar.scss')
-rw-r--r--source/bower_components/foundation/scss/foundation/components/_toolbar.scss70
1 files changed, 70 insertions, 0 deletions
diff --git a/source/bower_components/foundation/scss/foundation/components/_toolbar.scss b/source/bower_components/foundation/scss/foundation/components/_toolbar.scss
new file mode 100644
index 0000000..00ad0c7
--- /dev/null
+++ b/source/bower_components/foundation/scss/foundation/components/_toolbar.scss
@@ -0,0 +1,70 @@
+// Foundation by ZURB
+// foundation.zurb.com
+// Licensed under MIT Open Source
+// toolbar styles
+
+.toolbar {
+ background: $oil;
+ width: 100%;
+ font-size: 0;
+ display: inline-block;
+
+ &.label-bottom .tab .tab-content {
+ i, img { margin-bottom: 10px; }
+ }
+
+ &.label-right .tab .tab-content {
+ i, img { margin-right: 10px; display: inline-block;}
+ label { display: inline-block; }
+ }
+
+ &.vertical.label-right .tab .tab-content {
+ text-align: left;
+ }
+
+ &.vertical {
+ height: 100%;
+ width: auto;
+
+ .tab {
+ width: auto;
+ margin: auto;
+ float: none;
+ }
+ }
+
+ .tab {
+ text-align: center;
+ width: 25%;
+ margin: 0 auto;
+ display: block;
+ padding: 20px;
+ float: left;
+
+ &:hover {
+ background: rgba($white, 0.1);
+ }
+ }
+}
+
+.toolbar .tab-content {
+ font-size: 16px;
+ text-align: center;
+
+ label { color: $iron; }
+
+ i {
+ font-size: 30px;
+ display: block;
+ margin: 0 auto;
+ color: $iron;
+ vertical-align: middle;
+ }
+
+ img {
+ width: 30px;
+ height: 30px;
+ display: block;
+ margin: 0 auto;
+ }
+} \ No newline at end of file