-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (59 loc) · 1.35 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: yellow;
width: 100%;
height: 100%;
}
form {
text-align: center;
align-content: center;
background: white;
width: 80%;
margin: 10%;
border-radius: 5px;
padding: 10%;
}
input[type=number], select {
width: 80%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
font-size: 30px;
text-align: center;
}
.result {
margin-top: 20px;
font-size: 20px;
color: white;
background-color: rgb(4, 49, 69);
border-radius: 10px;
padding: 8px;
}
span {
}
.btn{
}
button {
border: none;
background: green;
color: rgb(255, 255, 255);
padding: 10px 22px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 5px;
}
#reset{
background: rgb(245, 26, 6);
color: rgb(255, 255, 255);
}