-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (69 loc) · 1.37 KB
/
Copy pathstyle.css
File metadata and controls
72 lines (69 loc) · 1.37 KB
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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 45vw;
background-color: rgba(127, 255, 212, 0.863);
}
#container{
background-color: rgb(184, 240, 240);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border: solid 2px blue;
border-radius: 20px;
padding: 20px;
width: 350px;
}
label, input{
margin-bottom: 21px;
}
input, #botao{
width: 60px;
height: 30px;
text-align: center;
border-radius: 10px;
}
#botao:hover{
cursor: pointer;
background-color: darkgrey;
color: blue;
}
#botao{
background-color: blue;
color: aliceblue;
font-weight: bolder;
}
#resultado{
border: 1px solid blue;
width: 150px;
height: 150px;
background-color: rgba(0, 0, 255, 0.432);
text-align: center;
font-size: 2em;
border-radius: 10px;
font-weight: bold;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
#limpar{
margin-top: 30px;
width: 65px;
background-color: blue;
color: aliceblue;
font-weight: bolder;
}
#limpar:hover{
background-color: darkgrey;
cursor: pointer;
color: blue;
}