-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (55 loc) · 966 Bytes
/
Copy pathstyle.css
File metadata and controls
63 lines (55 loc) · 966 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
53
54
55
56
57
58
59
60
61
62
63
#container {
width: 400px;
display: flex;
position: relative;
margin: auto;
padding: 30px;
background: #a9a9a9;
border-radius: 30px;
margin-top: 30px;
}
button {
height: 70px;
border: none;
border-radius: 10px;
margin: 3px;
font-size: large;
}
#buttongrid{
display: grid;
grid-template-columns: repeat(4, 1fr);
width: 100%;
grid-gap: 10px;
}
#clear{
grid-column: 1/3;
}
#backspace{
grid-column: 3/5;
}
#screen {
margin: 3px;
text-align: right;
vertical-align: auto;
margin-bottom: 10px;
height: 100px;
border-radius: 10px;
background-color: aliceblue;
grid-column: 1/5;
font-family: Arial, Helvetica, sans-serif;
}
#history{
height: 26px;
margin: 0px;
margin-top: 10px;
margin-right: 10px;
font-size: 20px;
}
#display{
margin: 0px;
font-size: 50px;
margin-right: 10px;
}
.keydown{
background-color: #585858;
}