Advertisement
Guest User

Untitled

a guest
Mar 18th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.97 KB | None | 0 0
  1.  
  2. .esconder{
  3. display: none;
  4. }
  5. body{
  6. font-family: 'Montserrat', sans-serif;
  7. overflow: visible;
  8. background-image: url("../img/background.jpg");
  9. background-repeat: no-repeat;
  10. margin: 0 auto;
  11.  
  12.  
  13. }
  14. .errorInput{
  15. border: 2px solid #d63031;
  16. }
  17.  
  18. header{
  19. width: 100%;
  20. padding: 5px;
  21. background: linear-gradient(0.25turn, #94236D, #872571, #722978, #5E2D7F, #4E3085, #38348B);
  22. height: 90px;
  23. display: inline-table;
  24. }
  25.  
  26. header img{
  27. margin-left: 10px;
  28. top: 5px;
  29. position: relative;
  30. }
  31. #opcionesNavegador{
  32. display: inline-table;
  33. margin: 5px;
  34. float: right;
  35. }
  36. #opcionesNavegador span{
  37. padding: 5px;
  38. margin-top: 20px;
  39. position: relative;
  40. display: inline-table;
  41.  
  42. }
  43. #opcionesNavegador .welcomeMessage{
  44. font-size: 16px;
  45. font-family: 'Bree Serif', serif;
  46. color: white;
  47. }
  48. #opcionesNavegador span a{/*Cada opción dentro del bloque*/
  49. color: white;
  50. text-decoration: none;
  51. margin: 5px;
  52. font-weight: bold;
  53. padding: 4px;
  54. font-family: 'Bree Serif', serif;
  55. font-size: 16px;
  56. margin-bottom: 20px;
  57. }
  58. #titulo h1{
  59. font-size: 28px;
  60. color: #fff;
  61. text-align: center;
  62. margin-top: 30px;
  63. font-family: 'Bree Serif', serif;
  64.  
  65. }
  66. #info{
  67. opacity: 0.95;
  68. box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 1px 1px rgba(0,0,0,0.22);
  69. background-color: #fff;
  70. margin : 0 auto;
  71. width: 20%;
  72. position: relative;
  73. font-size: 20px;
  74. padding: 20px;
  75. margin-top: 40px;
  76. margin-bottom: 80px;
  77. }
  78.  
  79.  
  80. #contenidoInfo{
  81. margin-top:10%;
  82. /*margin-left: 28%;*/
  83. text-align: center;
  84. margin-bottom: 10%;
  85. }
  86. #contenidoInfo p{
  87. font-size: 20px;
  88.  
  89. }
  90.  
  91. #info .divRegistro{
  92. margin-bottom: 20px;
  93. }
  94. #info .divRegistro label{
  95. /*width: 18%;*/
  96. /*display: inline-block;*/
  97. margin-right: 4px;
  98. }
  99.  
  100. #info .divRegistro input{
  101. height: 30px;
  102. /*width: 100px;*/
  103. outline-color: #6f1e51;
  104. font-family: 'Monserrat',sans-serif;
  105. font-size: 14px;
  106. }
  107.  
  108. /*#info .divRegistro select{
  109. height: 35px;
  110. width: 205px;
  111. outline-color: #6f1e51;
  112. font-family: 'Monserrat',sans-serif;
  113. font-size: 14px;
  114. }*/
  115.  
  116. select:invalid { color: gray; }
  117.  
  118. #btnRegistrar{
  119. /*margin-top: 8%;
  120. margin-left: 20%;*/
  121. margin: 0 auto;
  122. width: 150px;
  123. height: 30px;
  124. color: #fff;
  125. background: #6f1e51;
  126. font-size: 16px;
  127. border: 0px;
  128. display: inline-block;
  129. outline: none;
  130.  
  131. }
  132. .centrarInputs{
  133. margin: 0 auto;
  134. display: block;
  135. }
  136.  
  137. #btnRegistrar:hover{
  138. background: #833471;
  139. cursor: pointer;
  140. }
  141.  
  142. .inputLogin{
  143. margin-bottom: 20px;
  144. display: block;
  145. color: black;
  146. text-align: center;
  147. }
  148.  
  149. footer{
  150. position: absolute;
  151. width: 100%;
  152. background: linear-gradient(0.25turn, #722978, #872571, #94236D);
  153. height: 80px;
  154. bottom: 0;
  155. display: inline-table;
  156.  
  157. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement