-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
112 lines (107 loc) · 1.85 KB
/
style.css
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
*{
font-family: Arial, Helvetica, sans-serif;
}
html{
background-color: rgb(236, 236, 236);
}
.geral{
display: flex;
justify-content:center ;
margin-top: 2.5%;
height: 90vh;
align-items: center;
}
.img{
display: flex;
align-content: center;
justify-content: center;
align-items: center;
}
.celularImg{
margin-right: 50px;
width: auto;
height: 500px;
}
.centralArea{
display: flex;
flex-direction: column;
}
.logo{
font-family: 'Kaushan Script', cursive;
font-size: 200%;
}
.containerSemBG{
display: flex;
width: 300px;
flex-direction: column;
text-align: center;
}
.containerArea{
display: flex;
width: 300px;
flex-direction: column;
text-align: center;
background-color: #FFF;
border: 1px solid #DDD;
}
.formulario{
display: flex;
flex-direction: column;
text-align: center;
align-items: center;
}
.textoArea{
background-color: rgb(236, 236, 236);
border: solid 1px #DDD;
height: 35px;
width: 79%;
margin-bottom: 10px;
}
.entrar{
background-color: rgb(65 169 255);
border: none;
height: 35px;
width: 81%;
margin-bottom: 10px;
color: #FFF;
font-weight: bold;
border-radius: 5px;
cursor: pointer;
}
.links{
color: #2255FF;
text-decoration: none;
margin-bottom: 5px;
}
.outroLogin{
display: flex;
flex-direction: column;
}
.linkBold{
font-weight: bold;
font-size: 15px;
}
.linkSoft{
font-weight: lighter;
font-size: 12px;
}
@media (max-width:1080px) {
.geral{
justify-content: space-around;
padding: 0px 150px;
}
}
@media (max-width:790px) {
.img{
display: none;
}
}
@media (max-width:420px) {
.containerArea{
background-color: unset;
border: none;
}
.textoArea{
background-color: #FFF;
}
}