-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (76 loc) · 1.52 KB
/
Copy pathstyle.css
File metadata and controls
82 lines (76 loc) · 1.52 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
73
74
75
76
77
78
79
80
81
82
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-weight: bold;
}
body{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
background: radial-gradient(white, blue,black);
}
#container{
border: 3px solid black;
border-radius: 50px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-bottom: 10PX;
width: 25vw;
background-color: darkgrey;
box-shadow: 4px 4px;
}
label, input {
margin-top: 15px;
margin-bottom: 5px;
height: 30px;
width: 150px;
text-align: center;
border-radius: 50px;
}
.btn{
margin-top: 15px;
margin-bottom: 5px;
margin-right: 5px;
width: 50px;
height: 40px;
box-shadow: 3px 3px;
background: linear-gradient(darkgray, white);
}
.btn:hover{
cursor: pointer;
background-color: darkgray;
}
.c3{
border: 3px solid black;
border-radius: 15px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-bottom: 10px;
margin-top: 10px;
width: 20vw;
}
.btn{
border-radius: 15px;
font-size: 1.8em;
}
#btnLimpar{
border-radius: 15px;
margin-top: 15px;
width: 60px;
height: 40px;
box-shadow: 3px 3px;
background: linear-gradient(darkgray, white);
}
#btnLimpar:hover{
cursor: pointer;
}
#resultado{
margin-bottom: 20px;
}