-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (43 loc) · 703 Bytes
/
style.css
File metadata and controls
53 lines (43 loc) · 703 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
39
40
41
42
43
44
45
46
47
48
49
50
51
*{
margin: 0;
padding: 0;
font-family: sans-serif;
}
.login, .cadastrar, .listagem, .enviar-email {
position: absolute;
top: 40%;
left: 50%;
transform: translate(-50%,-50%);
width: 300px;
}
textarea {
margin-top: 30px;
border-width: 2px;
}
h1 {
text-align: center;
font-size: 50px;
margin-bottom: 30px;
}
form {
text-align: center;
}
#entrar, #cadastrar, #listar, #enviar {
width: 40%;
margin-top: 8px;
cursor: pointer;
}
p {
text-align: left;
padding: 1px;
}
input {
border-radius: 10px;
border-color: black;
border-width: 1px;
width: 100%;
}
.links {
margin-top: 30px;
text-align: center;
}