-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
78 lines (77 loc) · 1.1 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
71
72
73
74
75
76
77
78
html
{
background-color: rgb(0, 0, 0);
}
#calculator
{
display:flex;
}
/*.main-display
{
display:block;
flex-direction:row;
width:250px;
justify-content:baseline;
}
*/
input[type="button"]
{
color:white;
border-radius:30px;
background-color:grey;
height:60px;
width:60px;
font-weight:bold;
font-size:25px;
margin:10px 10px;
transition:0.5s;
cursor: pointer;
background-image:rgb(253, 234, 191);
}
input[type="button"]:hover
{
background-color: rgb(29, 29, 28);
color:whitesmoke;
}
.search-box
{
height:40px;
width:220px;
margin:15px 10px;
display:block;
font-size: xx-large;
background-color:rgba(0, 0, 0, 0.603);
color:white;
}
.arithmetics
{
display:block;
width: 100px;
}
#zero
{
margin-left:94px;
}
h1
{
margin-left:53px;
}
.input-box{
height:30px;
width:300px;
}
#result
{
width: 250px;
height:40px;
border-radius:30px;
background-color:rgb(94, 93, 93);
color:rgba(255, 255, 255, 0.938);
font-size:xx-large;
}
#calcu
{
height:auto;
width:auto;
margin-left:200px;
}