Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.07 KB | None | 0 0
  1.     <style type="text/css" media="screen">
  2.     html, body {
  3.         background-color: #EEE;
  4.         color: #333;
  5.         font-family: "Trebuchet MS",Trebuchet,tahoma,serif;
  6.     }
  7.     a {
  8.         color: #FF6600;
  9.     }
  10.     a:hover {
  11.         color: #0066FF;
  12.     }
  13.     .left-element {
  14.         float: left;
  15.         width: 49%;
  16.     }
  17.     .right-element {
  18.         float: right;
  19.         width: 49%;
  20.         text-align: right; /* depends on element width */
  21.     }  
  22.     .topMenu {
  23.         text-align: left;
  24.         font-size: 2em;
  25.         font-weight: bold;
  26.     }
  27.     .menu {
  28.         text-align:right;
  29.         background:inherit;
  30.         clear:both;
  31.         font-size: .8em;
  32.     }
  33.     .menu a {
  34.         font-weight: bold;
  35.     }
  36.     .menu:before {
  37.         content: "[";
  38.     }
  39.     .menu:after {
  40.         content: "]";
  41.     }
  42.     .quote{
  43.     background: #DDD;
  44.     border: solid 1px #CCC;
  45.     padding: 5px;
  46.     margin: 4px;
  47.     border-radius: 5px;
  48.     -moz-border-radius: 5px;
  49.     -webkit-border-radius: 5px;
  50.     border-radius: 5px 5px;
  51.     }
  52.     .quote a {
  53.         font-size: .8em;
  54.         font-weight: bold;
  55.         color: #333;
  56.         text-decoration: none;
  57.     }
  58.     .quote a:hover {
  59.         color: #0066FF;
  60.     }
  61.     .score {
  62.         padding-left: 5px;
  63.     }
  64.     .rox {
  65.         padding-right: 3px;
  66.     }
  67.     </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement