Advertisement
Guest User

Untitled

a guest
Nov 5th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.18 KB | None | 0 0
  1. /* RESET */
  2. * {margin: 0; padding: 0; font-size: 100%; font-family: 'Open Sans', sans-serif; font-weight: normal;
  3. box-sizing: border-box; border: none; outline: none;}
  4. img {max-width: 100%;}
  5. ul {list-style: none;}
  6. a {text-decoration: none;}
  7. h2 {font-size: 1.5em; color: #333;}
  8. p {font-size: 1em; color: #777;}
  9.  
  10. /* CABECALHO */
  11. .cabecalho {width: 100%; background-color: #1abc9c; padding: 30px;}
  12. .logo {width: 163px; height: 100px; margin-left: auto; margin-right: auto; display: block;}
  13.  
  14. /* MENU */
  15. .menu {width: 100%; background-color: #16a085; float: left; padding: 20px 10%;}
  16. .menu li {float: left;}
  17. .menu li a {color: #fff; margin-right: 25px; font-weight: bold;}
  18. .menu li a:hover {transition: all 0.4s ease-in; color: #ecf0f1;}
  19.  
  20. /* IP */
  21. .ip {float: right; color: #fff; font-weight: bold;}
  22. .ip:hover {transition: all 0.4s ease-in; cursor: pointer; color: #ecf0f1;}
  23.  
  24. /* PRINCIPAL */
  25. article {width: 100%; float: left; padding: 60px 15%; background-color: #f5f5f5;}
  26. article i {width: 100%; padding: 25px 15px; text-align: center; color: #333; border-bottom: solid 5px #34495e;}
  27. article h2 {font-weight: bold; text-align: center; padding: 10px;}
  28. article p {padding: 0 10px 10px 10px; color: #333;}
  29. .servidor, .loja, .plataforma {width: 28%; margin-right: 50px; float: left; border-radius: .25em;
  30. box-shadow: 0 0 3px 0 rgba(56, 67, 84, 0.61); background-color: #fff;}
  31.  
  32. /* NEWSLETTER */
  33. .newsletter {float: left; position: relative; width: 100%; background-color: #0C1C26;}
  34. .newsletter h2 {color: #fff; font-weight: bold; font-size: 1.3em; text-align: center; padding: 10px;}
  35. .newsletter p {color: #fff; font-size: 1em; padding: 0 5% 5% 10%; text-align: justify;}
  36. .sobre, .vago{float: left; width: 30%; border-right: dashed 1px #f5f5f5 !important;;}
  37. .contato {float: left; width: 30%;}
  38. .contato a {color: #fff}
  39. .btn-facebook:hover {transition: all 0.4s ease-in; color:#3B5998;}
  40. .btn-twitter:hover {transition: all 0.4s ease-in; color:#54A4D6;}
  41. .btn-youtube:hover {transition: all 0.4s ease-in; color:#D71E17;}
  42.  
  43. /* RODAPE */
  44. .rodape {float: left; position: relative; width: 100%; background-color: #16a085; padding: 10px;}
  45. .rodape p {color: #0C1C26; text-align: center; font-weight: 600;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement