-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
111 lines (95 loc) · 1.66 KB
/
Copy pathstyle.css
File metadata and controls
111 lines (95 loc) · 1.66 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
* {
padding: 0;
margin: 0;
}
body {
display: flex;
background-color: #212121;
justify-content: center;
}
.calculator {
margin-top: 10rem;
height: 27rem;
width: 20rem;
background-color: #323232;
border-radius: 10px;
}
.display {
border: none;
font-weight: 550;
box-sizing: border-box;
border-radius: 10px 10px 0px 0px;
height: 8rem;
font-size: 23px;
width: 100%;
background-color: #404040;
color: white;
display: flex;
align-items: flex-end;
padding: 13px;
overflow: auto;
scrollbar-width: thin;
scrollbar-color: #888 #404040;
}
.display:focus {
outline: none;
}
.display::-webkit-scrollbar {
width: 8px;
}
.display::-webkit-scrollbar-track {
background: #404040;
border-radius: 10px;
}
.display::-webkit-scrollbar-thumb {
background: #888;
border-radius: 10px;
}
.display::-webkit-scrollbar-thumb:hover {
background: #555;
}
.buttons {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 2px;
margin: 10px;
}
.button {
padding: 20px;
margin: 1px;
border-radius: 5px;
color: #ffffff;
font-size: 18px;
font-weight: 550;
border: none;
background-color: #3a3a3a
}
.button6,
.button7,
.button8,
.button11,
.button12,
.button13,
.button16,
.button17,
.button18,
.button21 {
background-color: #505050;
}
.button20 {
grid-row: span 2;
background-color: #e65100;
color: #ffffff;
font-size: 20px;
border: none;
border-radius: 5px;
}
.button20:hover {
background-color: #4aa4ee;
}
.button:hover {
background-color: #5b5656
}
.button:active {
background-color: #505050;
}