-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
91 lines (82 loc) · 1.58 KB
/
styles.css
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
html {
display: flex;
height: 100%;
align-items: center;
justify-content: center;
margin: 0;
padding: 0;
background-color: #181818;
}
main-calculator-container {
display: flex;
width: 60vw;
align-items: center;
justify-content: center;
width: 100%;
margin: 100px;
}
#equalsButton {
grid-column: 1 / span 3;
font-size: 3rem;
color: #2db6fa;
background-color: #3d3d3d;
}
#displayHistory {
margin-top: 20px;
font-size: 1.5rem;
grid-column: 1 / span 3;
height: 80%;
font-size: 3rem;
color: #2db6fa;
background-color: #212121;
}
#mainDisplay {
padding: 0;
margin: 0;
grid-column: 1 / span 3;
margin: 0;
height: 80%;
font-size: 3rem;
width: 100%;
color: #2db6fa;
background-color: #212121;
border: none !important;
box-shadow: none !important;
outline: none !important;
}
.main-buttons-container {
height: 80vh;
row-gap: 20px;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
}
.calcButton,
#deleteButton {
background-color: #3d3d3d;
color: #2db6fa;
font-size: 3rem;
padding: 0;
margin: 0;
width: 100%;
}
#displayHistory::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px 3d3d3d;
background-color: #3d3d3d;
}
#displayHistory::-webkit-scrollbar {
width: 10px;
background-color: #3d3d3d;
}
#displayHistory::-webkit-scrollbar-thumb {
background-color: #2db6fa;
background-image: -webkit-linear-gradient(
45deg,
rgba(255, 255, 255, 0.2) 25%,
transparent 25%,
transparent 50%,
rgba(255, 255, 255, 0.2) 50%,
rgba(255, 255, 255, 0.2) 75%,
transparent 75%,
transparent
);
}