-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (46 loc) · 859 Bytes
/
style.css
File metadata and controls
48 lines (46 loc) · 859 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
.h1{
text-align: center;
}
.line2,.line3,.line4,.line5,.line6{
display: flex;
align-items: center;
justify-content: center;
}
.mainsection{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
/* background-color: aqua; */
}
.calc{
padding: 10px;
margin: 10px;
background-color: rgb(238, 238, 242);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border: 2px solid gray;
box-shadow: 3px 3px 6px 3px grey;
}
.buttons {
padding: 10px 20px 10px;
margin: 5px;
border: 0px solid lightgray;
}
.butt{
margin-top: 20px;
margin-left: 0px;
/* border: 2px solid lightgray; */
}
#equalto{
padding-left: 47px;
padding-right: 47px;
background-color: rgb(28, 137, 240);
}
.outputbox{
padding: 10px 25px;
background: lightgrey;
border: 0px
}