-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
82 lines (68 loc) · 1.54 KB
/
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
@import url('https://fonts.googleapis.com/css2?family=Playwrite+DE+Grund:wght@100..400&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html{
display: flex;
align-items: center;
justify-content: center;
font-family: "Playwrite DE Grund", cursive;
}
.body {
max-width: 500px;
overflow: hidden;
margin-top: 80px;
border-radius: 20px;
background-color: rgba(0, 0, 0, 0.782);
padding: 15px;
}
.screen {
width: 100%;
padding: 20px;
border: none;
border-radius: 20px;
text-align: right;
font-family: "Playwrite DE Grund", cursive;
font-weight: bold;
font-size: 1.5rem;
background-color: rgba(0, 0, 0, 0.236);
color: white;
outline: none;
}
.btn {
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
width: 75px;
height: 75px;
border-radius: 50px;
border: none;
font-family: "Playwrite DE Grund", cursive;
font-weight: bold;
font-size: 1rem;
transition: transform 0.2s ease-in-out;
}
.btn:hover{
transform: scale(1.1);
}
.buttonHolder {
padding: 10px;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 10px;
}
.normal-btn {
background-color: rgb(181, 181, 181);
}
.normal-btn:active {
background-color: rgba(181, 181, 181, 0.637);
}
.operations {
background-color: rgb(0, 213, 255);
}
.operations:active {
background-color: rgb(0, 213, 255, 0.637);
}