User:3nki/common.css

From AvatarWiki
< User:3nki
Revision as of 07:35, 20 March 2019 by 3nki (talk | contribs)
Jump to navigation Jump to search

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
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; }