Yadda yah
This commit is contained in:
parent
fa781ae3c9
commit
42222f69ce
2 changed files with 32 additions and 47 deletions
63
style.css
63
style.css
|
@ -42,6 +42,9 @@ abbr, acronym {
|
|||
border: 0;
|
||||
}
|
||||
|
||||
/* =Normalisation
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
html {
|
||||
background-color: #fff;
|
||||
font: 1em/1.5 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
||||
|
@ -114,64 +117,21 @@ input, select, textarea {
|
|||
font-weight: normal;
|
||||
line-height: 1.5em;
|
||||
border: solid 1px #000;
|
||||
-webkit-border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
-o-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
padding: 4px;
|
||||
color: #000;
|
||||
width: 220px;
|
||||
}
|
||||
|
||||
input, textarea {
|
||||
-webkit-box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.1);
|
||||
-moz-box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.1);
|
||||
-o-box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.1);
|
||||
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
|
||||
-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
|
||||
-ms-transition: border linear 0.2s, box-shadow linear 0.2s;
|
||||
-o-transition: border linear 0.2s, box-shadow linear 0.2s;
|
||||
transition: border linear 0.2s, box-shadow linear 0.2s;
|
||||
}
|
||||
|
||||
select {
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
width: 220px;
|
||||
}
|
||||
|
||||
input:focus,
|
||||
textarea:focus {
|
||||
border-color: rgba(82, 168, 236, 0.8);
|
||||
outline: 0;
|
||||
outline: thin dotted \9;
|
||||
/* IE6-9 */
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
|
||||
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
|
||||
}
|
||||
|
||||
input[type="file"]:focus,
|
||||
input[type="radio"]:focus,
|
||||
input[type="checkbox"]:focus,
|
||||
select:focus {
|
||||
outline: thin dotted #333;
|
||||
outline: 5px auto -webkit-focus-ring-color;
|
||||
outline-offset: -2px;
|
||||
-webkit-box-shadow: none;
|
||||
-moz-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.btn {
|
||||
display: inline-block;
|
||||
background-color: #999;
|
||||
border: solid 1px #999;
|
||||
-webkit-border-radius: 5px;
|
||||
-moz-border-radius: 5px;
|
||||
-o-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
box-shadow: none;
|
||||
font-size: 12px;
|
||||
color: #fff;
|
||||
|
@ -200,6 +160,23 @@ img.alignright {
|
|||
margin: 0 0 24px 20px;
|
||||
}
|
||||
|
||||
/* =Nav Abstraction
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
.nav {
|
||||
list-style: none;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.nav > li {
|
||||
display: inline-block;
|
||||
*display: inline;
|
||||
}
|
||||
|
||||
.nav > li > a {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* =Scaffolding
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue