-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
68 lines (59 loc) · 1.19 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
body {
background-color: rgb(43, 43, 43);
display: flex;
justify-content: center;
align-items: center;
font-size: 24px;
color: orange;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.calculator {
width: 360px;
height: 500px;
background-color: rgb(66, 66, 66);
border: solid 5px orange;
border-radius: 10px;
}
.display {
width: 100%;
height: 142px;
text-align: end;
}
.row {
display: flex;
}
.btn {
display: flex;
justify-content: center;
align-items: center;
width: 90px;
height: 70px;
background-color: rgb(52, 52, 52);
border: solid 1px black;
}
.equal {
border-radius: 0px 0px 5px 0px;
}
.dot {
border-radius: 0px 0px 0px 5px;
}
.head {
display: flex;
justify-content: end;
align-items: center;
padding-right: 15px;
padding-top: 5px;
height: 50px;
border-radius: 5px 5px 0px 0px;
}
.main {
display: flex;
justify-content: end;
align-items: end;
height: 83px;
padding: 0px 15px 0px 0px;
font-size: 54px;
}
.num{
background-color: rgb(41, 41, 41);
}