-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
70 lines (66 loc) · 1.41 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
h1{
margin-left:20px;
}
.container{
color:#5603AD;
border-radius: 20px;
font: 1.5em serif;
text-align:center;
font-family: 'Oswald', sans-serif;
border: 1px #5603AD;
box-shadow: 0px 3px 10px;
padding: 15px;
height: 750px;
width: 600px;
margin: 50px;
background-color: #F0FFF1;
}
.container-calculadora-peso, .container-calculadora-altura{
border-radius: 15px;
color: #5603AD;
height:100px;
width: 450px;
text-align:center;
font-family:'Roboto Mono', monospace;
margin-bottom: 20px;
margin:auto;
background-color: #B3E9C7;
}
.input-number{
border-radius: 10px;
height: 30px;
width: 100px;
margin:auto;
font-size: 25px;
background-color: white;
}
.botao-calcular{
width: 450px;
margin:auto;
margin-top: 20px;
border-radius: 20px;
text-align:center;
font-family: 'Roboto Mono', monospace;
font-size: 18px;
background-color: #8367C7;
color: white;
cursor: pointer;
border: none;
padding: 10px;
}
.container-calculadora-resultado{
margin:auto;
font-family: 'Oswald', sans-serif;
display: flex;
margin-top: 20px;
text-align:center;
width: 450px;
height: 250px;
border-radius: 5px;
box-shadow: #5603AD;
background: #B3E9C7;
color: #8367C7;
padding: 20px;
box-sizing: border-box;
user-select: none;
}