-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
61 lines (61 loc) · 1.12 KB
/
styles.css
File metadata and controls
61 lines (61 loc) · 1.12 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
body{
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: rgb(208, 208, 208);
}
#calculator{
font-family: Arial, Helvetica, sans-serif;
max-width: 500px;
background: rgb(49, 49, 49);
overflow: hidden;
border-radius: 15px;
}
#display{
width: 100%;
height: 80px;
border: none;
background: rgb(65, 65, 65);
padding: 20px;
color: white;
font-size: 35px;
text-align: left;
}
button{
width: 100px;
height: 100px;
border-radius: 50%;
border: none;
background: rgb(106, 106, 106);
color: white;
font-size: 25px;
font-weight: bold;
cursor: pointer;
}
#keys{
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 10px;
padding: 25px;
}
button:hover{
background: rgb(159, 158, 158);
}
button:active{
background: rgb(205, 205, 205);
}
.operator-btn{
background: orange;
}
.operator-btn:hover{
background: rgb(250, 203, 115);
}
.operator-btn:active{
background: rgb(255, 238, 205);
}
.clr-btn{
grid-column: 4;
background-color: rgb(76, 76, 76);
}