-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (63 loc) · 1.33 KB
/
style.css
File metadata and controls
71 lines (63 loc) · 1.33 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
.container {
max-width: 400px;
margin: 10vh auto 0 auto;
box-shadow: 0px 0px 43px 17px rgba(153, 153, 153, 1);
border-radius: 6px 6px 0px 0px;
}
#fileDisplay {
text-align: right;
height: 70px;
line-height: 70px;
padding: 16px 8px;
background-color: rgb(58, 58, 53);
color: whitesmoke;
}
#historyDisplay {
text-align: right;
height: 70px;
line-height: 70px;
padding: 16px 8px;
background-color: black;
color: whitesmoke;
}
#display {
text-align: right;
height: 70px;
line-height: 70px;
padding: 16px 8px;
background-color: rgb(51, 51, 41);
text-align: left;
color: whitesmoke;
font-weight: bold;
}
.buttons {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
column-gap: 3px;
row-gap: 3px;
padding: 9px 6px 9px 6px;
background-color: rgb(58, 58, 53);
}
.buttons>div {
border-top: 1px solid black;
border-right: 1px solid black;
}
.button {
border: 0.5px solid black;
line-height: 100px;
text-align: center;
font-size: 25px;
cursor: pointer;
border-radius: 3px;
background-color: rgb(61, 61, 51);
color: white;
}
#equal {
background-color: green;
color: white;
grid-column: span 2;
}
.button:hover {
background-color: rgb(78, 78, 75);
transition: 0.1s ease-in-out;
}