-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
82 lines (80 loc) · 1.47 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
79
80
81
82
*{
padding:0;
margin:0;
}
html, body #fullheight{
min-height: 100% !important;
height: 100%;
font-family: Arial, Helvetica, sans-serif;
background: black;
}
.conatiner{
height: 100%;
background-color: black;
}
.result{
display: flex;
justify-content: flex-end;
align-items: flex-end;
color: white;
height: 39%;
}
.result span{
margin-top: 300px;
margin-right: 20px;
font-size: 105px;
justify-content: flex-end;
}
.buttons{
width: 100%;
height: 60%;
background-color: black;
display: grid;
grid-template-columns: 25% 25% 25% 25%;
}
.item{
display: flex;
justify-content: center;
align-items: center;
font-size: 37px;
color: white;
border-radius: 100%;
width: 80px;
height: 80px;
padding: 10px;
cursor: pointer;
align-self: center;
justify-self: center;
margin-top: 10px;
}
.percent{
background-color: #A5A5A5;
border: none;
color: black;
}
.item1 {
background-color: #A5A5A5;
border: none;
}
.item3{
background-color: #FF9F0A;
border: none;
}
button.item.equals{
background-color: #FF9F0A;
border: none;
}
.numbers, .comma{
background-color: #343434;
border: none;
}
.negative, .clear{
color: black;
}
.itemZero{
background-color: #343434;
border-radius: 135px;
grid-column: span 2;
border: none;
width: 170px;
}