Advertisement
nahuelbkn

style.css

Jul 20th, 2020
1,641
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.49 KB | None | 0 0
  1. /* Paleta de colores:
  2.  
  3. https://coolors.co/ffffff-00171f-003459-007ea7-00a8e8
  4.  
  5. Blanco............: #FFFFFF
  6. Azul oscuro.......: #00171F
  7. Azul..............: #003459
  8. Celeste...........: #007EA7
  9. Celeste claro.....: #00A8E8
  10.  
  11. */
  12.  
  13. /*ESTILOS GENERALES*/
  14.  
  15. * {
  16.     box-sizing: border-box;
  17.     padding: 0;
  18.     margin: 0;
  19. }
  20.  
  21. body {
  22.     font-family: "Roboto", sans-serif;
  23. }
  24.  
  25. nav {
  26.     background-color: #00171F;
  27.     /*color: #00171F;*/
  28.     display: flex;
  29.     height: 70px;
  30.     justify-content: space-between;
  31.     padding: 20px 40px;
  32.     margin: auto;
  33.     position: fixed;
  34.     top: 0;
  35.     width: 100%;
  36. }
  37.  
  38. div.navTitle{
  39.     display: flex;
  40. }
  41.  
  42. div.navTitle img
  43. {
  44.     height: 30px;
  45. }
  46.  
  47. div.navTitle h1{
  48.     margin-left: 20px;
  49.  
  50. }
  51.  
  52. h1 {
  53.     color: #FFFFFF;
  54.     font-size: 24px;
  55.     font-style: italic;
  56.     text-transform: uppercase;
  57.     letter-spacing: 3px;
  58. }
  59.  
  60.  
  61. div.menu a {
  62.     color: #FFFFFF;
  63.     font-size: 20px;
  64.     margin-left: 20px;
  65.     text-decoration: none;
  66. }
  67.  
  68. div.menu a:hover {
  69.     text-decoration: underline;
  70. }
  71.  
  72. h2 {
  73.     color: #00171F;
  74.     margin-left: 10%;
  75.     margin-bottom: 15px;
  76.     margin-top: 110px;
  77. }
  78.  
  79. label
  80. {
  81.     color: #00171F;
  82. }
  83.  
  84. p {
  85.     color: #00171F;
  86.     font-size: 16px;
  87.     text-align: justify;
  88.     line-height: 1.8rem;
  89.     margin: auto;
  90.     margin-bottom: 1rem;
  91.     width: 80%;
  92. }
  93.  
  94. footer h6 {
  95.     background-color: #00171F;
  96.     color: #FFFFFF;
  97.     font-size: 14px;
  98.     font-style: italic;
  99.     font-weight: 200;
  100.     text-align: center;
  101.     padding: 40px;
  102.     margin-top: 80px;
  103.     width: 100%;
  104. }
  105.  
  106. /*PAGINA HOME*/
  107.  
  108. img.logo {
  109.     display: block;
  110.     margin: auto;
  111.     margin-top: 70px;
  112.     width: 100%;
  113.    
  114. }
  115.  
  116. section.principal h2 {
  117.     margin-top: 60px;
  118. }
  119.  
  120. table.premio {
  121.     border: 1px solid #00171F;
  122.     margin-left: 20px;
  123.     margin: auto;
  124.     width: 50%;
  125. }
  126.  
  127. table.premio td {
  128.     border: 1px solid #00171F;
  129.     padding: 5px;
  130.     width: 50%;
  131.     text-align: center;
  132. }
  133.  
  134. table.premio thead {
  135.     background-color: #007EA7;
  136.     font-weight: 700;
  137.     letter-spacing: 1px;
  138. }
  139.  
  140. /*PAGINA PRODUCTOS*/
  141.  
  142. div.producto {
  143.     display: flex;
  144.     margin: auto;
  145.     margin-bottom: 40px;
  146.     width: 80%;
  147. }
  148.  
  149. div.producto:hover {
  150.     box-shadow: 0px 0px 10px #007EA7;
  151.     cursor: pointer;
  152. }
  153.  
  154. div.producto:hover img {
  155.     width: 320px;
  156. }
  157.  
  158. div.producto img {
  159.     transition: width 1s ease;
  160.     width: 300px;
  161. }
  162.  
  163. div.producto h3 {
  164.     color: #007EA7;
  165.     font-weight: 700;
  166.     margin: auto;
  167.     margin-bottom: 20px;
  168.     margin-top: 20px;
  169.     width: 80%;
  170. }
  171.  
  172. section.productos h2 {
  173.     margin-bottom: 40px;
  174. }
  175.  
  176. /*PAGINA CONTACTO*/
  177.  
  178. section.contacto form {
  179.     display: flex;
  180.     flex-direction: column;
  181.     margin: auto;
  182.     width: 450px;
  183. }
  184.  
  185. section.contacto form label {
  186.     font-size: 20px;
  187.     margin-bottom: 5px;
  188. }
  189.  
  190. section.contacto form input,
  191. section.contacto form select,
  192. section.contacto form textarea {
  193.     margin-bottom: 20px;
  194.     padding: 5px;
  195. }
  196.  
  197. section.contacto form input[type="submit"] {
  198.     background-color: #007EA7;
  199.     /*color:  #00171F;*/
  200.     border: none;
  201.     text-transform: uppercase;
  202.     font-size: 16px;
  203.     font-weight: 600;
  204.     padding: 10px;
  205.     margin-left: auto;
  206.     width: 200px;
  207. }
  208.  
  209. section.contacto form input[type="submit"]:hover {
  210.     background-color: #003459;
  211.     color: #FFFFFF;
  212.     cursor: pointer;
  213. }
  214.  
  215. section.mapa iframe {
  216.     display: block;
  217.     margin: auto;
  218.     margin-top: 40px;
  219.     width: 750px;
  220. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement