Commit 72a1b0504aeaff5c7f736cace3710e7443a459c0
1 parent
344968df3e
Exists in
master
Cambio de clase css de input y boton del login.
Showing
1 changed file
with
22 additions
and
3 deletions
Show diff stats
src/sass/_login.scss
1 | .login { | 1 | .login { |
2 | background-color: #bdbdbd; | 2 | background-color: #bdbdbd; |
3 | border: 1px solid #000000; | 3 | border: 1px solid #000000; |
4 | border-radius: 3px; | 4 | border-radius: 3px; |
5 | height: calc(193px + 1em); | 5 | height: calc(193px + 1em); |
6 | left: calc(50% - 130px); | 6 | left: calc(50% - 130px); |
7 | opacity: 0.7; | 7 | opacity: 0.7; |
8 | position: absolute; | 8 | position: absolute; |
9 | text-align: center; | 9 | text-align: center; |
10 | top: 190px; | 10 | top: 190px; |
11 | width: 260px; | 11 | width: 260px; |
12 | &-titulo { | 12 | &-titulo { |
13 | border-bottom: 1px solid #ffffff; | 13 | border-bottom: 1px solid #ffffff; |
14 | padding: 5px 0; | 14 | padding: 5px 0; |
15 | } | 15 | } |
16 | &-campo { | 16 | &-campo { |
17 | label { | 17 | label { |
18 | display: block; | 18 | display: block; |
19 | font-size: 12px; | 19 | font-size: 12px; |
20 | margin: 5px 0 0; | 20 | margin: 5px 0 0; |
21 | } | 21 | } |
22 | input { | 22 | input { |
23 | -moz-border-radius: 10px; | ||
24 | -khtml-border-radius: 10px; | ||
25 | -webkit-border-radius: 10px; | ||
26 | -webkit-appearance: none; | ||
27 | padding-right: 5%; | ||
28 | padding-left: 5%; | ||
29 | border-radius: 10px; | ||
30 | outline: 0; | ||
31 | border-color: transparent; | ||
23 | &:focus { | 32 | &:focus { |
24 | outline: 3px solid #ff9900; | 33 | border-color: #ff9900; |
25 | } | 34 | } |
26 | } | 35 | } |
27 | } | 36 | } |
37 | |||
28 | 38 | ||
29 | button { | 39 | &-button { |
30 | margin-right: 42px; | 40 | width: 80%; |
41 | background-color: #cd9035; | ||
42 | color: white; | ||
43 | &:hover{ | ||
44 | background-color: #a7743d; | ||
45 | color: white | ||
46 | } | ||
47 | &:focus{ | ||
48 | color: white; | ||
49 | } | ||
31 | } | 50 | } |
32 | 51 | ||
33 | &-alerta-error { | 52 | &-alerta-error { |
34 | width: 260px; | 53 | width: 260px; |
35 | left: calc(50% - 130px); | 54 | left: calc(50% - 130px); |
36 | top: calc(383px + 1.5em); | 55 | top: calc(383px + 1.5em); |
37 | } | 56 | } |
38 | } | 57 | } |
39 | 58 |