Skip to content

Instantly share code, notes, and snippets.

@kdbanman
Last active February 19, 2017 22:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kdbanman/8449146c2580ad5d626c05dbc527ee25 to your computer and use it in GitHub Desktop.
Save kdbanman/8449146c2580ad5d626c05dbc527ee25 to your computer and use it in GitHub Desktop.
Generate spacing.css
# Copyright 2017 Kirby Banman
#
# Licensed MIT:
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
space_types = [
"margin",
"padding"
]
space_locations = [
"top",
"right",
"bottom",
"left"
]
# ("label", quantity) pairs
spacings = [
("0", 0),
("1", 0.25),
("2", 0.5),
("3", 1),
("4", 2),
("5", 3)
];
space_units = "rem"
for space_type in space_types:
for space_location in space_locations:
for label, quantity in spacings:
print "." + space_type + "" + space_location.capitalize() + "-" + label + " {"
print " " + space_type + "-" + space_location + ": " + str(quantity) + ( "" if quantity == 0 else space_units ) + ";"
print "}"
print ""
@kdbanman
Copy link
Author

This generates spacing.css for this repo.

:shipit:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment