-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
62 lines (54 loc) · 1001 Bytes
/
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
body{
background: rgb(223, 182, 228);
font: normal 15pt Arial;
}
header{
color: white;
font-style: oblique;
text-align: center;
padding: 5px;
font-size: 20pt;
}
section{
background: rgb(255, 241, 241);
border-radius: 10px;
padding: 10px;
width: 500px;
margin: auto;
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}
div{
text-align: center;
padding: 5px;
}
div#res{
text-align: justify;
padding-top: 15px;
}
input#nome{
font-size: 16px;
padding: 3px;
width: 250px;
font-style: normal;
}
input#salario{
font-size: 16px;
padding: 3px;
width: 150px;
font-style: normal;
}
input#calcular{
font-size: 18px;
padding: 5px;
font-style: normal;
text-align: center;
width: 125px;
border-radius: 7px;
border-color: white;
color: black;
}
footer{
font-style: oblique;
text-align: center;
padding: 5px;
}