Commit f9be3959505dfb57152ba9b67e51da8c51d3e165
Exists in
master
Merge conflicts
Showing
3 changed files
Show diff stats
index.html
src/sass/_contenedor.scss
src/sass/_login.scss
1 | -.login { | |
2 | - background-color: #bdbdbd; | |
3 | - border: 1px solid #000000; | |
4 | - border-radius: 3px; | |
5 | - height: calc(193px + 1em); | |
6 | - left: calc(50% - 130px); | |
7 | - opacity: 0.7; | |
8 | - position: absolute; | |
9 | - text-align: center; | |
10 | - top: 190px; | |
11 | - width: 260px; | |
12 | - &-titulo { | |
13 | - border-bottom: 1px solid #ffffff; | |
14 | - padding: 5px 0; | |
15 | - } | |
16 | - &-campo { | |
17 | - label { | |
18 | - display: block; | |
19 | - font-size: 12px; | |
20 | - margin: 5px 0 0; | |
21 | - } | |
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; | |
32 | - &:focus { | |
33 | - border-color: #ff9900; | |
34 | - } | |
35 | - } | |
1 | +.bg-gradient-login { | |
2 | + background: linear-gradient(0, #ffffff, #e6e6e6); | |
3 | +} | |
4 | + | |
5 | +.login-small-text { | |
6 | + font-size: 12px; | |
7 | +} | |
8 | + | |
9 | +@media (min-width: 768px) { | |
10 | + .img-login { | |
11 | + width: 211px; | |
36 | 12 | } |
37 | - | |
38 | - &-button { | |
39 | - width: 80%; | |
40 | - background-color: #2872AD; | |
41 | - color: white; | |
42 | - &:hover{ | |
43 | - background-color: #a7743d; | |
44 | - color: white | |
45 | - } | |
46 | - &:focus{ | |
47 | - color: white; | |
48 | - } | |
13 | +} | |
14 | + | |
15 | +@media (max-width: 768px) { | |
16 | + .img-login { | |
17 | + width: 158px; | |
49 | 18 | } |
19 | +} | |
50 | 20 | |
51 | - &-alerta-error { | |
52 | - width: 260px; | |
53 | - left: calc(50% - 130px); | |
54 | - top: calc(383px + 1.5em); | |
21 | +.input-icon { | |
22 | + width: 100%; | |
23 | + pointer-events: none; | |
24 | + float: right; | |
25 | + position: absolute; | |
26 | + align-self: center; | |
27 | + z-index: 10; | |
28 | + div { | |
29 | + pointer-events: all; | |
30 | + float: right; | |
55 | 31 | } |
56 | 32 | } |