Commit 2ec5a50a3e8f294127bc4b2193d99b54819a7b63
Exists in
master
Merge branch 'master' into 'master'
boton de ingresar para login See merge request Wrappers/wrapper-demo!44
Showing
1 changed file
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: 155px; | 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 | &:focus { | 23 | &:focus { |
24 | outline: 3px solid #ff9900; | 24 | outline: 3px solid #ff9900; |
25 | } | 25 | } |
26 | } | 26 | } |
27 | } | 27 | } |
28 | |||
29 | button { | ||
30 | margin-right: 42px; | ||
31 | } | ||
28 | } | 32 | } |
29 | 33 |