-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalculator.css
77 lines (64 loc) · 1.19 KB
/
calculator.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
@font-face {
font-family: "TTB";
src: url('./TickingTimebombBB.ttf');
}
.calculator {
width: 438px;
height: 784px;
margin-left: calc(50% - 219px);
background-image: url('design/panel.png');
}
.top_buttons {
margin: 5px 0 !important;
}
.top_buttons:nth-of-type(2) {
margin-bottom: 15px !important;
}
.top_buttons .button {
margin: 0 3px 0 3px !important;
}
.solar_panel {
margin: 50px 0 0 267px;
}
.buttons {
margin: 48px 0 0px 25px;
}
.buttons .button:nth-of-type(1),
.buttons .button:nth-of-type(2),
.buttons .button:nth-of-type(4),
.buttons .button:nth-of-type(5) {
margin-right: -2px;
margin-bottom: -2px;
}
.row {
margin-bottom: -2px;
}
.buttons .button:nth-of-type(3) {
margin-right: 5px;
margin-bottom: -2px;
}
.part_row {
display: inline-block;
}
.button, .button {
display: inline-block;
cursor: pointer;
user-select: none;
-webkit-user-select: none;
}
.display {
background-image: url('design/display.png');
font-family: TTB;
/* width: 418px; */
/* height: 96px; */
width: 338px;
height: 90px;
margin: 20px 0 0 10px;
padding: 3px 40px;
line-height: 96px;
text-align: right;
font-size: 55px;
}
.sliders {
margin: 20px 0 0 150px;
}