Jvsierra

style.css

Aug 28th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.11 KB | None | 0 0
  1. body
  2. {
  3.     background-color: lightgray;
  4. }
  5.  
  6. a
  7. {
  8.     text-decoration:none;
  9.     color:orange;
  10.     text-align: center;
  11. }
  12.  
  13. a:visited
  14. {
  15.     color:orange;
  16. }
  17.  
  18. a:hover
  19. {
  20.     color:white;
  21. }
  22.  
  23. .titulo
  24. {
  25.     font-size:30px;
  26. }
  27.  
  28. .rodape
  29. {
  30.     width:100%;
  31.     height:10%;
  32. }
  33.  
  34.  
  35. .alinha-centro
  36. {
  37.     text-align: center;
  38. }
  39.  
  40. .margem-esquerda
  41. {
  42.     margin-left: 8px;
  43. }
  44.  
  45. .exemplo
  46. {
  47.     width:30%;
  48.     height:auto;
  49. }
  50.  
  51. .margem-direita
  52. {
  53.     margin-right: 8px;
  54. }
  55.  
  56. .margem-topo
  57. {
  58.     margin-top: 5px;
  59. }
  60.  
  61. .cabecalho
  62. {
  63.     width:100%;
  64.     height:15%;
  65. }
  66.  
  67. .menu
  68. {
  69.     width:100%;
  70.     height:10%;
  71. }
  72.  
  73. .fonte-pequena
  74. {
  75.     font-size: 2.3ex;
  76. }
  77.  
  78. .fundo-verde
  79. {
  80.     background-color: green;
  81. }
  82.  
  83. .borda-solida-branca
  84. {
  85.     border: 2px solid white;
  86. }
  87.  
  88. .borda-solida-cinza
  89. {
  90.     border: 2px solid gray;
  91. }
  92.  
  93. .corpo-texto
  94. {
  95.     width:100%;
  96.     height:auto;
  97. }
  98.  
  99. .cinza-claro
  100. {
  101.     color:lightgray;
  102. }
  103.  
  104. .laranja
  105. {
  106.     color:orange;
  107. }
  108.  
  109. .sem-serifa
  110. {
  111.     font-family: sans-serif;
  112. }
  113.  
  114. .paragrafo-tamanho-maior
  115. {
  116.     font-size: 18px;
  117. }
  118.  
  119. .justifica
  120. {
  121.     text-align: justify;
  122. }
  123.  
  124. .alinha-direita
  125. {
  126.     text-align: right;
  127. }
  128.  
  129. .branco
  130. {
  131.     color: white;
  132. }
Add Comment
Please, Sign In to add comment