-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalc_style.css
More file actions
67 lines (57 loc) · 1.29 KB
/
calc_style.css
File metadata and controls
67 lines (57 loc) · 1.29 KB
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
@import url('https://fonts.googleapis.com');
.calculator {
padding: 20px;
border-radius: 1em;
height: 380px;
width: 400px;
margin: 20px;
background-image: url(.//photo.jpg);
box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.display-box {
padding: 5px 10px;
font-family: 'Montserat', bold;
font-size: 25px;
background-color: #dcdbe1;
border: solid black 0.5px;
color: black;
border-radius: 5px;
width: 325px;
height: 70px;
}
.button {
font-family: 'Montserat', sans-serif;
font-size: 25px;
background-color: #64278f;
color: #4e4e4e;
border: solid black 0.5px;
width: 80px;
border-radius: 8px;
height: 45px;
}
.button:hover {
box-shadow: 0 0 5px 2px #d2d2dd9e;
}
.button0_tr {
width: 6.7em;
}
.button1_tr {
background-color: #c8c8c8;
}
.button2_tr {
background-color: #c9dbb6;
}
.button3_tr {
background-color: #eaeaea;
}
.button4_tr {
background-color: #ece6d0;
height: 5.7em;
}
.button:active {
background: #43a844ed;
-webkit-box-shadow: inset 0px 0px 5px #c1c1c1;
-moz-box-shadow: inset 0px 0px 5px #c1c1c1;
box-shadow: inset 0px 0px 5px #c1c1c1;
color: white;
}