-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalc.css
More file actions
48 lines (41 loc) · 990 Bytes
/
calc.css
File metadata and controls
48 lines (41 loc) · 990 Bytes
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
#container {
background-color: rgb(128, 128, 128);
display: inline-block;
padding: 20px;
font-size: 100px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
#display {
background-color: white;
margin: 3px;
}
#displaytext {
background-color: white;
margin: 20px;
text-align: right;
}
.button {
font-size: 75px;
padding-left: 30px;
padding-right: 30px;
margin: 10px;
width: 120px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.button:hover {
background-color: lightgray;
border: 0px;
}
.extrabutton {
background-color: rgb(142, 210, 255);
border: 0px;
font-size: 75px;
padding-left: 30px;
padding-right: 30px;
margin: 10px;
width: 120px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.extrabutton:hover {
background-color: rgb(81, 185, 255);
}