|
| 1 | +* { |
| 2 | + margin: 0; |
| 3 | + padding: 0; |
| 4 | + box-sizing: border-box; |
| 5 | +} |
| 6 | + |
| 7 | +body { |
| 8 | + background-size: cover; |
| 9 | + background-attachment: fixed; |
| 10 | + font-family: sans-serif; |
| 11 | + font-weight: normal; |
| 12 | + font-size: 100%; |
| 13 | + color: #a6d6ef; |
| 14 | + margin: 0; |
| 15 | + background-color: #0f4c75; |
| 16 | +} |
| 17 | + |
| 18 | + |
| 19 | +/** |
| 20 | +MENU |
| 21 | +*/ |
| 22 | + |
| 23 | + .formcontainer { |
| 24 | + display: flex; |
| 25 | + align-items: center; |
| 26 | + justify-content: center; |
| 27 | + margin: 0; |
| 28 | + padding: 0; |
| 29 | + min-width: 100vw; |
| 30 | + min-height: 100vh; |
| 31 | + width: 100%; |
| 32 | + height: 100%; |
| 33 | +} |
| 34 | + |
| 35 | +#contenido { |
| 36 | + max-width: 320px; |
| 37 | + width: 100%; |
| 38 | +} |
| 39 | + |
| 40 | +#btnform{ |
| 41 | + text-decoration: none; /*decoración texto*/ |
| 42 | + text-transform: uppercase; /*capitalización texto*/ |
| 43 | + font-family: 'Helvetica', sans-serif; /*tipografía texto*/ |
| 44 | +} |
| 45 | + |
| 46 | +/* FORMATO LOGIN */ |
| 47 | +.formlogin { |
| 48 | + font-size: 200%; |
| 49 | + color:#bbe1fa; |
| 50 | + text-align: center; |
| 51 | + margin-bottom: 20px; |
| 52 | +} |
| 53 | + |
| 54 | +#formlogin { |
| 55 | + width: 100%; |
| 56 | + padding: 50px 30px; |
| 57 | + background-color: #3282b8; |
| 58 | + border-radius: 3px; |
| 59 | + -moz-border-radius: 3px; |
| 60 | + -webkit-border-radius: 3px ; |
| 61 | + |
| 62 | + box-sizing: border-box; |
| 63 | +} |
| 64 | +#formregistro { |
| 65 | + width: 100%; |
| 66 | + padding: 50px 30px; |
| 67 | + background-color: #3282b8; |
| 68 | + border-radius: 3px; |
| 69 | + -moz-border-radius: 3px; |
| 70 | + -webkit-border-radius: 3px ; |
| 71 | + |
| 72 | + box-sizing: border-box; |
| 73 | +} |
| 74 | + |
| 75 | + |
| 76 | +#formlogin input { |
| 77 | + font-family: sans-serif; |
| 78 | + font-size: 110%; |
| 79 | + color: #1b262c; |
| 80 | + |
| 81 | + display: block; |
| 82 | + width: 100%; |
| 83 | + height: 40px; |
| 84 | + |
| 85 | + margin-bottom: 10px; |
| 86 | + padding: 5px 5px 5px 10px; |
| 87 | + |
| 88 | + box-sizing: border-box; |
| 89 | + |
| 90 | + border: none; |
| 91 | + border-radius: 3px 3px 3px 3px; |
| 92 | + -moz-border-radius: 3px 3px 3px 3px; |
| 93 | + -webkit-border-radius: 3px 3px 3px 3px; |
| 94 | +} |
| 95 | + |
| 96 | +/* #formlogin input::placeholder { |
| 97 | + font-family: sans-serif; |
| 98 | + color: #E4E4E4; |
| 99 | +} */ |
| 100 | + |
| 101 | +#formlogin button { |
| 102 | + font-family: sans-serif; |
| 103 | + font-size: 110%; |
| 104 | + color:#1b262c; |
| 105 | + width: 100%; |
| 106 | + height: 40px; |
| 107 | + border: none; |
| 108 | + |
| 109 | + border-radius: 3px 3px 3px 3px; |
| 110 | + -moz-border-radius: 3px 3px 3px 3px; |
| 111 | + -webkit-border-radius: 3px 3px 3px 3px; |
| 112 | + |
| 113 | + background-color: #bbe1fa; |
| 114 | + |
| 115 | + margin-top: 10px; |
| 116 | +} |
| 117 | + |
| 118 | +#formlogin button:hover { |
| 119 | + background-color: #0f4c75; |
| 120 | + color:#bbe1fa; |
| 121 | +} |
| 122 | + |
| 123 | +/* FORMATO REGISTRO */ |
| 124 | +.formregistro { |
| 125 | + font-size: 200%; |
| 126 | + color:#bbe1fa; |
| 127 | + text-align: center; |
| 128 | + margin-bottom: 20px; |
| 129 | +} |
| 130 | + |
| 131 | +#formregistro { |
| 132 | + width: 100%; |
| 133 | + padding: 50px 30px; |
| 134 | + background-color: #053a5e; |
| 135 | + border-radius: 3px; |
| 136 | + -moz-border-radius: 3px; |
| 137 | + -webkit-border-radius: 3px ; |
| 138 | + |
| 139 | + box-sizing: border-box; |
| 140 | +} |
| 141 | + |
| 142 | + |
| 143 | +#formregistro input { |
| 144 | + font-family: sans-serif; |
| 145 | + font-size: 110%; |
| 146 | + color: #1b262c; |
| 147 | + |
| 148 | + display: block; |
| 149 | + width: 100%; |
| 150 | + height: 40px; |
| 151 | + |
| 152 | + margin-bottom: 10px; |
| 153 | + padding: 5px 5px 5px 10px; |
| 154 | + |
| 155 | + box-sizing: border-box; |
| 156 | + |
| 157 | + border: none; |
| 158 | + border-radius: 3px 3px 3px 3px; |
| 159 | + -moz-border-radius: 3px 3px 3px 3px; |
| 160 | + -webkit-border-radius: 3px 3px 3px 3px; |
| 161 | +} |
| 162 | + |
| 163 | +/* #formlogin input::placeholder { |
| 164 | + font-family: sans-serif; |
| 165 | + color: #E4E4E4; |
| 166 | +} */ |
| 167 | + |
| 168 | +/* #formregistro button { |
| 169 | + font-family: sans-serif; |
| 170 | + font-size: 110%; |
| 171 | + color:#1b262c; |
| 172 | + width: 100%; |
| 173 | + height: 40px; |
| 174 | + border: none; |
| 175 | + |
| 176 | + border-radius: 3px 3px 3px 3px; |
| 177 | + -moz-border-radius: 3px 3px 3px 3px; |
| 178 | + -webkit-border-radius: 3px 3px 3px 3px; |
| 179 | + |
| 180 | + background-color: #bbe1fa; |
| 181 | + |
| 182 | + margin-top: 10px; |
| 183 | +} */ |
| 184 | + |
| 185 | +#formregistro button:hover { |
| 186 | + background-color: #0f4c75; |
| 187 | + color:#bbe1fa; |
| 188 | +} |
| 189 | +#formregistro button:hover { |
| 190 | + background-color: #0f4c75; |
| 191 | + color:#bbe1fa; |
| 192 | +} |
| 193 | + |
| 194 | + |
| 195 | + |
| 196 | + |
| 197 | +/* */ |
| 198 | + |
| 199 | +.btnLogin, .btnRegistro { |
| 200 | + /* border: 5px solid #eeeff1; /*anchura, estilo y color borde*/ |
| 201 | + /* padding: 10px; /*espacio alrededor texto*/ |
| 202 | + /* background-color: #2e518b; /*color botón*/ |
| 203 | + /* color: #ffffff; /*color texto*/ |
| 204 | + text-decoration: none; /*decoración texto*/ |
| 205 | + text-transform: uppercase; /*capitalización texto*/ |
| 206 | + font-family: 'Helvetica', sans-serif; /*tipografía texto*/ |
| 207 | + /* border-radius: 50px; /*bordes redondos */ |
| 208 | + } |
| 209 | + |
0 commit comments