-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
114 lines (101 loc) · 1.93 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
113
114
body {
padding: 0;
margin: 0;
background-color: #39677e;
background-repeat: no-repeat;
background-size: cover;
}
#flex-container {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}
.conteudo {
background-color: whitesmoke;
padding: 40px;
border-radius: 20px;
width: 280px;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
-ms-border-radius: 20px;
-o-border-radius: 20px;
}
.cabecalho {
padding-bottom: 50px;
opacity: 0.8;
text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.cabecalho::after {
content: "";
width: 30px;
height: 3px;
background-color: #0f597d;
display: block;
margin-top: -18px;
margin-left: -1px;
}
.card_conteudo label {
font-size: 20px;
opacity: 0.8;
}
.conteudo_area {
display: flex;
flex-direction: column;
padding: 10px 0 2px 0;
}
.conteudo_area input {
margin-top: 10px;
padding: 2px 5px;
background-color: transparent;
border: none;
border-bottom: 3px solid #bdb8b8;
outline: none;
font-size: large;
}
.conteudo_verificacao {
display: flex;
align-items: center;
justify-content: space-around;
}
.recuperar_senha {
text-align: center;
width: 60%;
text-decoration: none;
color: #c91818;
margin-top: 20px;
}
.conteudo_verificacao label {
font-size: 14px;
}
.button {
display: flex;
flex-direction: column;
align-items: center;
}
.button .submit {
width: 70%;
height: 40px;
background-color: #2e3e46;
border: none;
color: #e1e1e1;
margin: 30px 0;
border-radius: 18px;
cursor: pointer;
}
.btn_voltar {
display: inline-block;
width: 40%;
height: 40px;
background-color: #a11b1b;
border: none;
color: #e1e1e1;
border-radius: 18px;
text-decoration: none;
text-align: center;
line-height: 40px;
cursor: pointer;
font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
font-size: 13px;
}