Difference between revisions of "User:3nki/common.css"
Jump to navigation
Jump to search
(Blanked the page) |
|||
| Line 1: | Line 1: | ||
| + | html { | ||
| + | -moz-box-sizing: border-box; | ||
| + | -webkit-box-sizing: border-box; | ||
| + | box-sizing: border-box; | ||
| + | font-size: 8px; | ||
| + | background-color: #333; | ||
| + | } | ||
| + | body { | ||
| + | color: #fff; | ||
| + | font-family: Helvetica, Arial, sans-serif; | ||
| + | font-weight: 400; | ||
| + | font-size: 2rem; | ||
| + | line-height: 3rem; | ||
| + | z-index: 1; | ||
| + | } | ||
| + | |||
| + | *, *:before, *:after { | ||
| + | -moz-box-sizing: inherit; | ||
| + | -webkit-box-sizing: inherit; | ||
| + | box-sizing: inherit; | ||
| + | } | ||
| + | *:focus { outline: 0; } | ||
| + | select, input, option, button { font-family: Helvetica, Arial, sans-serif; } | ||
| + | select:focus, textarea:focus { outline: none; } | ||
| + | |||
| + | html, body { | ||
| + | position: relative; | ||
| + | min-height: 100%; | ||
| + | border: 0; | ||
| + | padding: 0; | ||
| + | margin: 0; | ||
| + | } | ||
| + | |||
| + | img { border: 0; } | ||
| + | |||
| + | a, button, img, input, select { outline: none; } | ||
| + | a, a:visited { | ||
| + | color: #fef378; | ||
| + | text-decoration: none; | ||
| + | } | ||
| + | a:hover { | ||
| + | color: #fef378; | ||
| + | cursor: pointer; | ||
| + | text-decoration: underline; | ||
| + | } | ||
| + | |||
| + | .clear-floats { clear: both; } | ||
Revision as of 07:35, 20 March 2019
html {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
font-size: 8px;
background-color: #333;
}
body {
color: #fff;
font-family: Helvetica, Arial, sans-serif;
font-weight: 400;
font-size: 2rem;
line-height: 3rem;
z-index: 1;
}
*, *:before, *:after {
-moz-box-sizing: inherit;
-webkit-box-sizing: inherit;
box-sizing: inherit;
}
*:focus { outline: 0; }
select, input, option, button { font-family: Helvetica, Arial, sans-serif; }
select:focus, textarea:focus { outline: none; }
html, body {
position: relative;
min-height: 100%;
border: 0;
padding: 0;
margin: 0;
}
img { border: 0; }
a, button, img, input, select { outline: none; }
a, a:visited {
color: #fef378;
text-decoration: none;
}
a:hover {
color: #fef378;
cursor: pointer;
text-decoration: underline;
}
.clear-floats { clear: both; }