-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (44 loc) · 871 Bytes
/
style.css
File metadata and controls
52 lines (44 loc) · 871 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
49
50
51
52
body {
font-family: 'Montserrat', sans-serif;
margin: 0;
}
table {
width: 100%;
height: 70vh;
background-color: rgb(25, 25, 25);
color: white;
font-family: 'Montserrat', sans-serif;
}
td {
width: 25%;
text-align: center;
font-size: 24px;
background-color: rgb(20, 20, 20);
}
td:hover {
background-color: rgb(30, 30, 30);
cursor: pointer;
}
#resultArea {
height: 30vh;
background-color: rgb(40, 40, 40);
color: white;
font-size: 60px;
display: flex;
justify-content: flex-end;
align-items: flex-end;
padding: 24px;
box-sizing: border-box;
}
#equalsign {
background-color: rgb(209, 81, 21);
}
#equalsign:hover {
background-color: rgb(196, 106, 67);
}
.operators {
background-color: rgb(209, 81, 21);
}
.operators:hover {
background-color: rgb(196, 106, 67);
}