Skip to content

Commit

Permalink
Added definition list styling
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Ferdinandi committed Nov 13, 2013
1 parent 2ba665f commit 0ea2673
Showing 1 changed file with 19 additions and 10 deletions.
29 changes: 19 additions & 10 deletions kraken.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@
/* Mobile Screen Resizing */
@-webkit-viewport { width: device-width; zoom: 1.0; }
@-moz-viewport { width: device-width; zoom: 1.0; }
@-ms-viewport { width: device-width; zoom: 1.0; }
@-o-viewport { width: device-width; zoom: 1.0; }
@viewport { width: device-width; zoom: 1.0; }
@-ms-viewport { width: device-width; zoom: 1.0; }
@-o-viewport { width: device-width; zoom: 1.0; }
@viewport { width: device-width; zoom: 1.0; }

/* Remove browser defaults */
html, body, div, span, applet, object, iframe,
Expand Down Expand Up @@ -76,7 +76,7 @@ footer, header, hgroup, menu, nav, section {
html {
overflow-y: scroll;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}

/* Display audio, canvas, and video elements as inline block elements. */
Expand Down Expand Up @@ -355,7 +355,8 @@ a:hover img {
* Styling for lists */

ul,
ol {
ol,
dl {
margin-bottom: 1.529411765em;
margin-left: 2em;
}
Expand All @@ -375,6 +376,14 @@ ol {
list-style: decimal;
}

dl {
margin-left: 0;
}

dt {
font-weight: bold;
}

/* Removes list styling.
* For semantic reasons, should only
* be used on unordered lists. */
Expand Down Expand Up @@ -531,7 +540,7 @@ pre {
padding: .823529412em;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
tab-size: 4;
white-space: pre-wrap;
word-break: break-all;
}
Expand Down Expand Up @@ -592,7 +601,7 @@ a .btn-blue:hover {

.btn:active {
-webkit-box-shadow: inset 0 .142857143em .235294118em rgba(0, 0, 0, 0.15), 0 .071428571em .142857143em rgba(0, 0, 0, 0.05);
box-shadow: inset 0 .142857143em .235294118em rgba(0, 0, 0, 0.15), 0 .071428571em .142857143em rgba(0, 0, 0, 0.05);
box-shadow: inset 0 .142857143em .235294118em rgba(0, 0, 0, 0.15), 0 .071428571em .142857143em rgba(0, 0, 0, 0.05);
outline: 0;
}

Expand All @@ -614,7 +623,7 @@ input[type="button"].btn-block {
padding-left: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
box-sizing: border-box;
}

.btn-block + .btn-block {
Expand Down Expand Up @@ -668,7 +677,7 @@ select {
border-radius: .176470588em;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
box-sizing: border-box;
}

form button,
Expand All @@ -695,7 +704,7 @@ input:focus,
textarea:focus {
border-color: rgba(82, 168, 236, 0.8);
-webkit-box-shadow: inset 0 .071428571em .071428571em rgba(0, 0, 0, 0.075), 0 0 .470588235em rgba(82, 168, 236, 0.6);
box-shadow: inset 0 .071428571em .071428571em rgba(0, 0, 0, 0.075), 0 0 .470588235em rgba(82, 168, 236, 0.6);
box-shadow: inset 0 .071428571em .071428571em rgba(0, 0, 0, 0.075), 0 0 .470588235em rgba(82, 168, 236, 0.6);
outline: 0;
outline: thin dotted \9;
}
Expand Down

0 comments on commit 0ea2673

Please sign in to comment.