_login.scss
747 Bytes
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
.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 {
&:focus {
outline: 3px solid #ff9900;
}
}
}
button {
margin-right: 42px;
}
&-alerta-error {
width: 260px;
left: calc(50% - 130px);
top: calc(383px + 1.5em);
}
}