Commit 4724d97f959faf70b9ec7d556b744e3ba6c1dcfb

Authored by Eric Fernandez
Exists in master

Merge branch 'master' of http://git.focasoftware.com/npm/wrapper-demo

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 &:focus { 23 &:focus {
24 outline: 3px solid #ff9900; 24 outline: 3px solid #ff9900;
25 } 25 }
26 } 26 }
27 } 27 }
28 28
29 button { 29 button {
30 margin-right: 42px; 30 margin-right: 42px;
31 } 31 }
32
33 &-alerta-error {
34 width: 260px;
35 left: calc(50% - 130px);
36 top: calc(383px + 1.5em);
37 }
32 } 38 }
33 39