-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (45 loc) · 804 Bytes
/
style.css
File metadata and controls
52 lines (45 loc) · 804 Bytes
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
.container{
text-align: center;
margin-top:23px
}
table{
margin: auto;
}
input{
border-radius: 21px;
font-size:34px;
height: 65px;
width: 260px;
overflow-y: auto;
text-align: right;
scroll-behavior: smooth;
}
button{
border-radius: 20px;
font-size: 20px;
background: #08beeb;
width: 60px;
height: 50px;
margin: 6px;
}
.calculator{
background-color: rgb(243, 73, 73);
padding: 23px;
border-radius: 53px;
display: inline-block;
}
body{
width: 100%;
height: 100vh;
float: left;
background: linear-gradient(
to right,
rgb(248, 178, 189) 0%,
rgb(255, 180, 192) 50%,
rgb(168, 248, 248) 50%,
rgb(159, 245, 245) 100%
);
}
.footer{
margin-bottom: -10px;
}