-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (60 loc) · 1.26 KB
/
style.css
File metadata and controls
64 lines (60 loc) · 1.26 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
body{
color: rgb(0, 0, 0);
font-weight: bolder;
background-color: rgb(82, 81, 81);
background-image: url(./69new.png)
}
.container{
max-width: 400px;
margin: 4vh auto 0 auto;
box-shadow: 0px 0px 43px 17px rgb(0 0 0);
background-color: rgb(126, 124, 124);
border-radius: 14px 10px 10px;
color: white;
}
#display{
text-align: right;
height: 70px;
line-height: 70px;
padding: 16px 8px;
font-size: 25px;
background-color: black;
}
.button{
display: grid;
border-bottom: 1px solid #130101;
border-left: 1px solid #1d1b1b;
grid-template-columns: 1fr 1fr 1fr 1fr;
}
.button >div {
border-top: 1px solid #999;
border-right: 1px solid #999;
}
.buttons{
display: inline-block;
width: 100%;
margin-left: 2rem;
background-repeat: no-repeat;
}
.button{
display: inline-block;
width: 20%;
border: 0.5px solid #999;
line-height: 100px;
text-align: center;
font-size: 25px;
cursor: pointer;
}
#equal{
background-color: #000000;
color: rgb(253, 226, 226);
}
#equal:hover{
background-color: rgb(255, 255, 255);
color: rgb(52, 50, 50);
}
.button:hover{
background-color: rgb(248, 243, 242);
color: #5a5958;
transition: 0.5s ease;
}