-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscical.css
58 lines (57 loc) · 905 Bytes
/
scical.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
* {
padding: 5px;
margin: 10px;
}
body {
background-color: #ffffff ;
}
.calculator {
width: 350px;
height: 150px;
background-color: #c0c0c0;
box-shadow: 0px 0px 0px 10px #000000;
border: 5px solid black;
border-radius: 10px;
}
display {
width: 320px;
height: 40px;
text-align: right;
background-color: white;
border: 3px solid black;
font-size: 18px;
left: 2px;
top: 2px;
color: #7fff00;
}
.btnTop{
color: black;
background-color: #6f6f6f;
font-size: 14px;
margin: auto;
width: 50px;
height: 40px;
}
.btnNum {
color: white;
background-color: black;
font-size: 14px;
margin: auto;
width: 50px;
height: 40px;
}
.btnMath {
color: white;
background-color: #ff5733;
font-size: 14px;
margin: auto;
width: 50px;
}
.btnOpps {
color: white;
background-color: #ff5733;
font-size: 14px;
margin: auto;
width: 50px;
height: 40px;
}