diff --git a/dist/lit.css b/dist/lit.css index e087e6a..2333824 100644 --- a/dist/lit.css +++ b/dist/lit.css @@ -1 +1 @@ -*{box-sizing:border-box}*+*{margin:.5em 0}pre{overflow:auto}@media(min-width:35em){.col{display:table-cell}.\31{width:5%}.\33{width:22%}.\34{width:30%}.\35{width:40%}.\32{width:15%}.\36{width:50%}.row{display:table;border-spacing:1em 0}}.row,.w-100{width:100%}.card:focus,hr{outline:0;border:solid #fa0}.card,pre{padding:1em;border:solid #eee}.btn:hover,a:hover{opacity:.6}.c{max-width:60em;padding:1em;margin:auto;font:1em/1.6 nunito}h6{font:100 1em nunito}h5{font:100 1.2em nunito}h3{font:100 2em nunito}h4{font:100 1.5em nunito}h2{font:100 2.2em nunito}h1{font:100 2.5em nunito}a{color:#fa0;text-decoration:none}.btn.primary{color:#fff;background:#fa0;border:solid #fa0}td,th{padding:1em;text-align:left;border-bottom:solid #eee}.btn{padding:1em;text-transform:uppercase;background:#fff;border:solid;font:.7em nunito} \ No newline at end of file +*{box-sizing:border-box}*+*{margin:.5em 0}pre{overflow:auto}@media(min-width:35em){.col{display:table-cell}.\31{width:5%}.\33{width:22%}.\34{width:30%}.\35{width:40%}.\32{width:15%}.\36{width:50%}.row{display:table;border-spacing:1em 0}}.row,.w-100{width:100%}.card:focus,hr{outline:0;border:solid #fa0}.card,pre{padding:1em;border:solid #eee}.btn:hover,a:hover{opacity:.6}.c{max-width:60em;padding:1em;margin:auto;font:1em/1.6 sans-serif}h6{font:400 1em sans-serif}h5{font:400 1.2em sans-serif}h3{font:400 2em sans-serif}h4{font:400 1.5em sans-serif}h2{font:400 2.2em sans-serif}h1{font:400 2.5em sans-serif}a{color:#fa0;text-decoration:none}.btn.primary{color:#fff;background:#fa0;border:solid #fa0}td,th{padding:1em;text-align:left;border-bottom:solid #eee}.btn{padding:1em;text-transform:uppercase;background:#fff;border:solid;font:.7em sans-serif}a.btn{display:inline-block}input,select{font-family:sans-serif} \ No newline at end of file diff --git a/dist/lit.css.gz b/dist/lit.css.gz index 39f428f..8bac386 100644 Binary files a/dist/lit.css.gz and b/dist/lit.css.gz differ diff --git a/docs/lit.html b/docs/lit.html index a54a1b8..b4e538f 100644 --- a/docs/lit.html +++ b/docs/lit.html @@ -6,7 +6,6 @@ lit 🔥 - @@ -29,7 +28,7 @@

lit 🔥

-
world's smallest responsive css framework* (395 bytes gzipped and minified)
+
world's smallest responsive css framework* (434 bytes gzipped and minified)

This is the result of me playing css "code golf" with Skeleton. As such, this framework strives to maintain all of the features that Skeleton and other similar frameworks offer, while working on older browsers as well.

If you want a little more, try using util, an addon for lit

Any other thoughts? Head to the Github repository and make an issue! If you like this idea, don't forget to

@@ -112,7 +111,7 @@

Heading 3

Heading 4

Heading 5
Heading 6
-

This is a paragraph. The font family is Nunito. +

This is a paragraph. Some bold text. Italics also looks nice. You can underline things you feel are important. Lit has styles that override the default heading styles, including margin.


     <h1>Heading</h1>
@@ -252,7 +251,7 @@ 

Tables

lit Full - 395 + 434 Skeleton diff --git a/docs/util.html b/docs/util.html index 13c60ed..5bd34df 100644 --- a/docs/util.html +++ b/docs/util.html @@ -6,7 +6,6 @@ util - @@ -183,4 +182,4 @@

Name

- \ No newline at end of file + diff --git a/index.html b/index.html index 68e5088..50c0549 100644 --- a/index.html +++ b/index.html @@ -6,7 +6,6 @@ lit - @@ -42,4 +41,4 @@

util

- \ No newline at end of file + diff --git a/src/lit.css b/src/lit.css index a580555..3b59b6b 100644 --- a/src/lit.css +++ b/src/lit.css @@ -1,11 +1,10 @@ /* * Lit v0.1 * Primary Color set to: #FA0 -* Font set to: Nunito */ :root { - --font: nunito; + --font: sans-serif; --primary-color: #fa0; --light: #eee; } @@ -87,27 +86,27 @@ a:hover, } h6 { - font: 100 1em var(--font); + font: 400 1em var(--font); } h5 { - font: 100 1.2em var(--font); + font: 400 1.2em var(--font); } h3 { - font: 100 2em var(--font); + font: 400 2em var(--font); } h4 { - font: 100 1.5em var(--font); + font: 400 1.5em var(--font); } h2 { - font: 100 2.2em var(--font); + font: 400 2.2em var(--font); } h1 { - font: 100 2.5em var(--font); + font: 400 2.5em var(--font); } a { @@ -134,4 +133,12 @@ th { background: white; border: solid; font: .7em var(--font); -} \ No newline at end of file +} + +a.btn { + display: inline-block; +} + +select, input { + font-family: var(--font); +}