mirror of
https://github.com/kennethreitz-archive/wordpress-skeleton.git
synced 2026-06-05 23:50:19 +00:00
49 lines
900 B
CSS
49 lines
900 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
color: #464646;
|
|
}
|
|
|
|
html,body {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
line-height: 1.4em;
|
|
}
|
|
|
|
body,input {
|
|
font-family: "Lucida Grande", Verdana, Arial;
|
|
font-size: 13px;
|
|
}
|
|
|
|
a {
|
|
color: #21759B;
|
|
}
|
|
|
|
a:hover {
|
|
color: #D54E21;
|
|
}
|
|
|
|
.button,input[type="button"],input[type="submit"] {
|
|
font-size: 11px;
|
|
line-height: 16px;
|
|
background: #f2f2f2 url(../../../../../wp-admin/images/white-grad.png) repeat-x scroll left top;
|
|
border: 1px solid #bbb;
|
|
color: #464646;
|
|
text-shadow: 0 1px 0 #fff;
|
|
cursor: pointer;
|
|
padding: 2px 8px;
|
|
border-radius: 11px;
|
|
-webkit-border-radius: 11px;
|
|
-moz-border-radius: 11px;
|
|
}
|
|
|
|
.button:hover,input[type="button"]:hover,input[type="submit"]:hover {
|
|
border-color: #666;
|
|
color: #000;
|
|
}
|
|
|
|
.button:active,input[type="button"]:active,input[type="submit"]:active {
|
|
background: #f2f2f2 url(../../../../../images/white-grad-active.png) repeat-x scroll left top;
|
|
} |