-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (52 loc) · 1009 Bytes
/
style.css
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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Minecraft', sans-serif;
}
.containercontainer {
height: 100vh;
width: 100%;
background-color: #282525;
display: flex;
justify-content: center;
align-items: center;
}
.container {
display: grid;
grid-template-rows: repeat(6, 1fr);
grid-template-columns: repeat(4, 1fr);
gap: 10px;
font-family: 'Minecraft', sans-serif;
}
.text {
grid-column: span 4;
text-align: right;
color: #F5DEB3;
}
.child {
padding: 5px;
font-size: 2rem;
border-radius: 10px;
border: none;
background-color: #1e1b1b;
box-shadow: -3px -3px 5px rgba(225, 225, 225, 0.1), 3px 3px 5px rgba(0, 0, 0, 0.2);
transition: color 0.4s ease-in-out;
transition: transform 0.6s ease-in-out;
}
.child:hover {
color: #65a0ff;
transform: scale(1.05);
}
button {
color: #F5DEB3;
}
.operator {
color: #FFFF00;
}
.clear {
color: #b80808;
}
.equal {
color: #00ff00;
}