Advertisement
Guest User

style.css

a guest
May 20th, 2013
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.84 KB | None | 0 0
  1. html, body, form, fieldset, legend {
  2.     margin: 0;
  3.     padding: 0;
  4. }
  5. h1, h2, h3, h4, h5, h6, p {
  6.     margin-top: 0;
  7. }
  8. fieldset,img {
  9.     border: 0;
  10. }
  11. legend{
  12.     color: #000;
  13. }
  14. sup {
  15.     vertical-align: text-top;
  16. }
  17. sub {
  18.     vertical-align: text-bottom;
  19. }
  20. table {
  21.     border-collapse: collapse;
  22.     border-spacing: 0;
  23. }
  24. caption, th, td {
  25.     text-align: left;
  26.     vertical-align: top;
  27.     font-weight: normal;
  28. }
  29. input, textarea, select {
  30.     font-size: 110%;
  31.     line-height: 1.1;
  32. }
  33. abbr, acronym {
  34.     border-bottom: .1em dotted;
  35.     cursor: help;
  36. }
  37.  
  38. /*o meu código começa aqui, o código acima é um reset*/
  39. /*fonte do reset: http://www.maxdesign.com.au/articles/css-reset/ */
  40.  
  41. html {
  42.     width: 1300px;
  43.     margin: 0 auto;
  44.     font-family: sans-serif;
  45.     font-size: 0.95em;
  46.     color: #424242;
  47.     background-color: #FFFFFF;
  48. }
  49. body {
  50.    
  51. }
  52. .texto {
  53.     position: absolute;
  54.     top: 20px;
  55.     width: 550px;
  56. }
  57. #instrucoes {
  58.     background-color: #FAFAFA;
  59.     width: 536px;
  60.     padding: 5px;
  61.     color: #585858;
  62.     border: 2px solid #D8D8D8;
  63. }
  64. #hint {
  65.     background-color: #FAFAFA;
  66.     width: 536px;
  67.     padding: 5px;
  68.     color: #585858;
  69.     border: 2px solid #D8D8D8;
  70.     margin: 10px 0 0 0;
  71. }
  72. .codigo {
  73.     position: absolute;
  74.     left: 630px;
  75.     top: 65px;
  76.     padding: 10px;
  77.     width: 676px;
  78.     height: 420px;
  79.     background-color: #e6efc2;
  80.     color: #264409;
  81.     border: 2px solid #c6d880;
  82.     font-family: mono;
  83.     font-weight: bold;
  84.     font-size: 0.85em;
  85. }
  86. #voltar {
  87.     position: absolute;
  88.     left: 1275px;
  89.     top: 25px;
  90.     color: #585858;
  91. }
  92. a:link {text-decoration: none;}
  93. a:visited {text-decoration: none;}
  94. a:hover {background-color: #F2F2F2; }
  95. a:active {text-decoration: none;}
  96. hr {
  97.     border: 0;
  98.     width: 100%;
  99.     color: #D8D8D8;
  100.     background-color: #D8D8D8;
  101.     height: 2px;
  102. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement