-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
75 lines (69 loc) · 1.33 KB
/
style.css
File metadata and controls
75 lines (69 loc) · 1.33 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
*{
padding:0px;
margin:0px;
box-sizing:border-box;
}
h1{
color:white;
}
body{
background-color: #3b4765;
}
.display{
width: 500px;
height: fit-content;
margin-top: 30px;
margin-bottom: 30px;
background-color: #181f32;
color:white;
padding:20px;
font-size: 1.5rem;
align-items:center;
border-radius: 8px;
}
.container{
position: absolute;
top:50%;
left:50%;
transform: translate(-50%,-50%);
}
.buttons{
font-family: Arial, Helvetica, sans-serif;
background-color: #252c45;
width: 500px;
padding:30px;
height: 250px;
display: grid;
border-radius: 8px;
grid-template-columns: 1fr 1fr 1fr 1fr;
column-gap:12px;
row-gap: 12px;
}
.button-items{
background-color: white;
border: 0.5px solid white;
font-size: 1.7rem;
color:gray;
text-align: center;
cursor: pointer;
transition: 0.3s ease-out;
border-radius: 5px;
}
.button-items:hover{
background-color:gray;
color:white;
}
.reset{
color:white;
background-color: #3053ab;
}
.equal{
color:white;
background-color: rgb(249, 7, 7);
}
.equal:hover{
background-color: rgb(181, 90, 90) !important;
}
.reset:hover{
background-color: #0d2666;
}