Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.20 KB | None | 0 0
  1. .main {
  2. position:absolute;
  3. top:160px;
  4. width:100%;
  5. left: 0;
  6. right: 0;
  7. max-width: 950px;
  8. margin: auto;
  9.  
  10. @media only screen and (min-width: 1365px){
  11. max-width: 1080px;
  12. }
  13.  
  14. section {
  15. display: flex;
  16. align-items: flex-end;
  17. padding: 0px 20px;
  18. min-height: calc(100vh - 160px);
  19. width:100%;
  20. }
  21.  
  22. #cod_cliente {
  23.  
  24. .ancla {
  25.  
  26. display: flex;
  27. flex-direction: column;
  28. align-items: center;
  29. margin-bottom: 20px;
  30. width: 274px;
  31.  
  32. button.letrero-ancla {
  33. position: relative;
  34. top:40px;
  35. z-index:4;
  36.  
  37. cursor:pointer;
  38.  
  39. width: 234px;
  40. height: 155px;
  41.  
  42. background-color: rgba(0,0,0,0);
  43. background-image: url(#{$path-img}/png/btncategdria.png);
  44. background-size: cover;
  45. background-repeat: no-repeat;
  46. border-color:transparent;
  47.  
  48. @media only screen and (min-width: 1366px){
  49. width: 254px;
  50. height: 175px;
  51. }
  52. @media only screen and (min-width: 1920px){
  53. width: 274px;
  54. height: 185px;
  55. }
  56. }
  57.  
  58. .ancla1 {
  59. position: relative;
  60. right: 40px;
  61. }
  62. }
  63.  
  64. .form-cod {
  65. padding: 30px;
  66. min-height: calc(100vh - 160px);
  67. width: 741px;
  68. background-image: url(#{$path-img}/png/fondo_cond.png);
  69. background-size: cover;
  70. display: flex;
  71. justify-content: center;
  72. align-items: center;
  73. form {
  74. display: flex;
  75. flex-direction: column;
  76. align-items: center;
  77. justify-content: space-around;
  78. height: 250px;
  79. h2 {
  80. color: #111;
  81. letter-spacing: -2px;
  82. }
  83. .input-cod-vendedor {
  84. position: relative;
  85. z-index: 4;
  86. background-color: rgba(255,255,255,.5);
  87. border:1px solid #333;
  88. border-radius: 4px;
  89. width: 300px;
  90. height: 50px;
  91. }
  92. .boton-cod-vendedor {
  93. position: relative;
  94. z-index: 4;
  95. margin-bottom: 20px;
  96. width:220px;
  97. height: 89px;
  98. background-color: rgba(0,0,0,0);
  99. background-size: cover;
  100. background-repeat: no-repeat;
  101. border-color:transparent;
  102. background-image: url(#{$path-img}/png/btn_guardar.png);
  103. }
  104.  
  105. }
  106. }
  107.  
  108. }
  109.  
  110. #categorias {
  111. [class*="categoria-"] {
  112. flex: 1 1 auto;
  113. box-shadow: 0px 0px 1px black;
  114. img {
  115. position: relative;
  116. width: 160%;
  117. margin-bottom: 10px;
  118. }
  119.  
  120. }
  121. }
  122. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement