frond.sass 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. $asana: #067ab4
  2. $copyleft: #ccc
  3. $enlace: #2dde98
  4. $fondo: #2d3743
  5. $red: #fc636b
  6. $submit: #3895ea
  7. $submit-text: #fff
  8. $text: #fff
  9. $textbox-focus: #221f1f
  10. $textbox: #a4a4a4
  11. $URLbox: #f5f5f1
  12. body
  13. background: $fondo
  14. color: $text
  15. .contenedor
  16. margin: auto
  17. width: 70%
  18. max-width: 700px
  19. background: $asana
  20. display: flex
  21. flex-direction: column
  22. flex-wrap: wrap
  23. align-items: center
  24. .libreyt
  25. padding-bottom: 60px
  26. a.enlace
  27. color: $copyleft
  28. text-decoration: none
  29. &:hover
  30. color: $enlace
  31. header
  32. display: flex
  33. width: 90%
  34. padding: 20px 0px
  35. justify-content: center
  36. img
  37. align-items: center
  38. width: 100%
  39. vertical-align: top
  40. section
  41. width: 100%
  42. h2
  43. text-align: center
  44. .formulario
  45. display: flex
  46. flex-wrap: wrap
  47. justify-content: center
  48. flex-direction: column
  49. align-items: center
  50. input[type="text"],
  51. input[type="search"]
  52. background: $URLbox
  53. border: 2px solid
  54. margin-bottom: 15px
  55. width: 80%
  56. border-radius: 5px
  57. padding: 15px 20px
  58. font-size: 15px
  59. color: $textbox
  60. &:focus
  61. border: 2px solid $submit
  62. color: $textbox-focus
  63. .boton
  64. margin: auto
  65. background: $submit
  66. color: $submit-text
  67. border: none
  68. border-radius: 3px
  69. padding: 15px 40px
  70. cursor: pointer
  71. footer
  72. p.copyleft
  73. font-size: 12px
  74. text-align: center