-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
84 lines (81 loc) · 1.46 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
*{
margin:0;
padding:0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
body{
background-color: #F2C185;
height: 100vh;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
}
header{
height: 70px;
}
header h1{
text-align: center;
color:#048ABF;
}
main form{
min-width: 350px;
max-width: 450px;
min-height: 350px;
max-height: 450px;
border-radius: 30px;
border: 2px solid #BF7F5A;
background-color: #243A65;
color:white;
/* posicionamento */
display: flex;
flex-direction: column;
padding:40px 30px;
flex-wrap: nowrap;
}
input{
outline: none;
border:none;
}
input[type="text"],input[type="number"]{
font-size: 17px;
margin-block:8px;
padding: 5px;
}
#idade,#numero{
width: 190px;
}
#sexo{
width: 100px;
padding: 5px;
}
#inline{
display: flex;
gap: 3px;
justify-content: space-between;
}
#inline .em_cima{
display: flex;
flex-direction: column;
}
label{
margin-top:8px;
}
form input[type="submit"]{
align-self: center;
}
input[type="submit"]{
margin-top:20px;
padding: 10px;
width: 200px;
border-radius: 16px;
font-size: 12pt;
font-weight: 500;
background-color: #048ABF;
color: white;
}
input[type="submit"]:hover{
background-color: white;
color: #048ABF;
}