-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
114 lines (88 loc) · 1.67 KB
/
Copy pathapp.css
File metadata and controls
114 lines (88 loc) · 1.67 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#calculator-outline {
border: 3pt solid black;
text-align: center;
margin-top: 2em;
background-color: lightblue;
}
#title {
padding-bottom: 10px;
border-bottom: 3pt solid black;
width: 100%;
font-family: 'Barrio', cursive;
font-size: 50px;
}
#display-numbers {
padding-left: 1em;
font-size: 18px;
float: left;
font-weight: bold;
width: 100%;
height: 3em;
margin-top: 1em;
margin-bottom: 1.5em;
}
.calculator-table {
margin-top: 1em;
}
.calculator-button:hover {
cursor: pointer;
background-color: honeydew;
height: 2em;
}
.table {
border: 1pt solid black;
}
.calculator-table,td {
background-color: lightgrey;
border: 1pt solid black;
height: 3.5em;
font-size: 20px;
text-align: center;
}
#clearButton {
background-color: #FD6464;
}
#clearButton:hover {
background-color: red;
}
#enterButton {
background-color: #BCF777;
}
#enterButton:hover {
background-color: #85E21A;
}
#historyButton {
margin-left: -14.5px;
float: left;
width: 105%;
height: 60px;
font-size: 18px;
opacity: .9;
}
#historyButton:hover {
opacity: 1;
font-size: 20px;
}
.modal-title {
text-align: center;
text-decoration: underline;
}
.historyData {
font-size: 17px;
text-align: center;
}
.historyData:hover {
cursor: pointer;
font-size: 19px;
color: black;
}
.dataHeader {
text-decoration: underline;
text-align: center;
}
#putIntoInput {
text-align: center;
}
#clickToInput {
text-align: center;
}