diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2009-10-23 21:54:00 -0600 |
---|---|---|
committer | Chad Kieffer <ckieffer@gmail.com> | 2009-10-23 21:54:00 -0600 |
commit | f1f2c384cb4236f29ecdf9025c3da3166eeb4c34 (patch) | |
tree | cd59dfc94936d225a860c35dff903736cc293c7d | |
parent | cd5485ee845aed96e5ab2eaeb5f92c093ccf260a (diff) |
Rename dimension and scale classes in increments of quarters and thirds.
-rw-r--r-- | lib/gallery.common.css | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/lib/gallery.common.css b/lib/gallery.common.css index c94a8421..318594d0 100644 --- a/lib/gallery.common.css +++ b/lib/gallery.common.css @@ -170,17 +170,28 @@ input[type="reset"] { * 3) Dimension and scale **********************************************************************/ -.g-narrow { +.g-one-quarter { width: 25%; } -.g-wide { - width: 100%; +.g-one-third { + width: 33%; } -form.g-narrow { - padding: 0; - width: 270px; +.g-one-half { + width: 50%; +} + +.g-two-thirds { + width: 66%; +} + +.g-three-quarters { + width: 75%; +} + +.g-whole { + width: 100%; } /** ******************************************************************* |