aboutsummaryrefslogtreecommitdiffstats
path: root/src/css/imports/_z-index.css
diff options
context:
space:
mode:
authorDarin Dimitroff <d@thecrazyones.agency>2017-01-03 11:44:31 +0200
committerDarin Dimitroff <d@thecrazyones.agency>2017-01-03 11:44:31 +0200
commited4be926a7217018e052e3fecda92e4ee671d950 (patch)
treebbf3e59364d19cfb8fd0dd702fdfbd2f9b61c3fa /src/css/imports/_z-index.css
parent263f591827b41eba7c1d6ab68240c04369ba1155 (diff)
Cleans up and refactors CSS
Diffstat (limited to 'src/css/imports/_z-index.css')
-rwxr-xr-xsrc/css/imports/_z-index.css36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/css/imports/_z-index.css b/src/css/imports/_z-index.css
index 9f4d863..edf3a1e 100755
--- a/src/css/imports/_z-index.css
+++ b/src/css/imports/_z-index.css
@@ -1,38 +1,3 @@
-/*
-
- Z-INDEX
-
- Base
- z = z-index
-
- Modifiers
- -0 = literal value 0
- -1 = literal value 1
- -2 = literal value 2
- -3 = literal value 3
- -4 = literal value 4
- -5 = literal value 5
- -999 = literal value 999
- -9999 = literal value 9999
-
- -max = largest accepted z-index value as integer
-
- -inherit = string value inherit
- -initial = string value initial
- -unset = string value unset
-
- MDN: https://developer.mozilla.org/en/docs/Web/CSS/z-index
- Spec: http://www.w3.org/TR/CSS2/zindex.html
- Articles:
- https://philipwalton.com/articles/what-no-one-told-you-about-z-index/
-
- Tips on extending:
- There might be a time worth using negative z-index values.
- Or if you are using tachyons with another project, you might need to
- adjust these values to suit your needs.
-
-*/
-
.z-0 { z-index: 0; }
.z-1 { z-index: 1; }
.z-2 { z-index: 2; }
@@ -50,4 +15,3 @@
.z-inherit { z-index: inherit; }
.z-initial { z-index: initial; }
.z-unset { z-index: unset; }
-