-
Notifications
You must be signed in to change notification settings - Fork 0
/
rc4.css
61 lines (52 loc) · 782 Bytes
/
rc4.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
body, html{
margin: 0;
padding: 0;
font-family: Arial;
font-size: 14px;
}
h1{
text-align: center;
color: #424242;
margin-top: 40px;
}
.conteudo{
background-color: #E0E0E0;
width: 400px;
height: 460px;
margin: 30px auto;
padding-top: 15px;
padding-left: 95px;
box-sizing: border-box;
border-radius: 20px;
}
.campo{
width: 70%;
margin-right: 10px;
}
.campo:nth-of-type(odd),
.campo:nth-of-type(4){
height: 50px;
}
p.paragrafo:first-child {
margin-top: 10px;
}
.input{
display: flex;
align-items: center;
}
.paragrafo{
margin: 20px auto 3px auto;
}
button{
display: block;
margin-top: 5px;
width: 120px;
border: none;
background-color: #BDBDBD;
padding: 5px;
border-radius: 4px;
}
button:hover{
background-color: #EEEEEE;
cursor: pointer;
}