-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (70 loc) · 1.33 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
body {
position: relative;
padding:0;
font-family: Sans-Serif;
}
div.rumusContainer {
border-radius: 0 0 10px 10px;
padding:0 1% 0 1%;
height: 20%;
width: 98%;
background: #EAEFF9;
text-align: right;
font-size: 65px;
}
div.rumus {
transition: 0.3s ease-in;
overflow-x: scroll;
overflow-y: none;
outline: none;
border: none;
width: 100%;
height: 52%;
}
div.hasil {
overflow-x: scroll;
overflow-y: none;
transition: 0.05s linear;
font-size: 45px;
margin-top:5px;
}
div.btnContainer {
height: 75%;
width: 100%;
margin-top: 10px;
}
div.btnChild {
display: flex;
text-align: center;
vertical-align: middle;
}
div.btn {
user-select: none;
transition: 0.1s linear;
padding: 10px;
line-height: 60px;
font-size: 40px;
background: #F7F9FC;
height: 60px;
width: 70px;
margin: 5px;
border-radius: 50px;
}
div.btn:active, div.btn:focus {
background: #eee;
border-radius: 20px;
}
div.operator {
background: #C2E7FF !important;
}
div.AC {
background: #BAE3C6 !important;
}
div.jumlah {
background: #D2E2FC !important;
}
p.footer {
text-align: center;
font-style: oblique;
opacity: 0.4;
}