_login.scss
1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
.login {
background-color: #bdbdbd;
border: 1px solid #000000;
border-radius: 3px;
height: calc(193px + 1em);
left: calc(50% - 130px);
opacity: 0.7;
position: absolute;
text-align: center;
top: 190px;
width: 260px;
&-titulo {
border-bottom: 1px solid #ffffff;
padding: 5px 0;
}
&-campo {
label {
display: block;
font-size: 12px;
margin: 5px 0 0;
}
input {
-moz-border-radius: 10px;
-khtml-border-radius: 10px;
-webkit-border-radius: 10px;
-webkit-appearance: none;
padding-right: 5%;
padding-left: 5%;
border-radius: 10px;
outline: 0;
border-color: transparent;
&:focus {
border-color: #ff9900;
}
}
}
&-button {
width: 80%;
background-color: #cd9035;
color: white;
&:hover{
background-color: #a7743d;
color: white
}
&:focus{
color: white;
}
}
&-alerta-error {
width: 260px;
left: calc(50% - 130px);
top: calc(383px + 1.5em);
}
}