-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyless.css
More file actions
82 lines (75 loc) · 1.64 KB
/
Copy pathstyless.css
File metadata and controls
82 lines (75 loc) · 1.64 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
76
77
78
79
80
81
82
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #000000;
margin: 0;
font-family: 'Arial', sans-serif;
font-weight: bold;
}
.calculator {
border-radius: 10px;
padding: 20px;
background-color: #ffc0f5;
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.calculator-screen {
width: 95%;
height: 40px;
border: none;
background-color: #ffffff;
color: #000000;
text-align: right;
padding: 10px;
border-radius: 5px;
margin-bottom: 15px;
font-size: 24px;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}
.calculatorkeys {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 10px;
}
.calculatorkeys button {
height: 40px;
border-radius: 50px;
border: none;
font-size: 18px;
cursor: pointer;
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.calculatorkeys button:hover{
border:2px solid #ffffff;
transition: ease-in-out .10s;
}
.operator {
background-color: #e979ff;
color: #fff;
border: 2px solid white;
}
.operator:hover {
transition: ease-in-out .10s;
background-color: #d433f5;
border: 3px solid white;
}
.all-clear {
background-color: #e74c3c;
color: #fff;
}
.all-clear:hover{
border:2px solid #ffffff;
transition: ease-in-out .10s;
background-color: #e7200a;
}
.equal-sign {
background-color: #3acc77;
color: #fff;
grid-column: span 4;
}
.equal-sign:hover{
background-color: #09d65e;
border:2px solid #ffffff;
transition: ease-in-out .10s;
}