-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalc.css
More file actions
113 lines (111 loc) · 2.36 KB
/
Copy pathcalc.css
File metadata and controls
113 lines (111 loc) · 2.36 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
* {
font-family: "Edu SA Beginner", cursive;
background-color: black;
color: white;
}
h1 {
text-align: center;
}
.container {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
width: 300px;
height: 400px;
border: 2px solid white;
margin: 0 auto;
margin-top: 10px;
box-shadow: 2px 2px 10px rgb(237, 10, 169);
border-radius: 20px;
}
.container:hover {
transition-duration: 0.25s;
box-shadow: 0px 0px 20px rgb(237, 10, 169);
}
.number {
height: 50px;
width: 50px;
border: 5px double white;
margin: 10px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 20px;
cursor: pointer;
}
.calc:hover {
transition-duration: 0.25s;
box-shadow: 0px 0px 20px rgb(0, 255, 234);
}
.calc {
height: 40px;
width: 300px;
border: 2px solid white;
box-shadow: 2px 2px 10px rgb(0, 255, 234);
margin: auto;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
font-size: 30px;
}
.clear {
height: 30px;
width: 80px;
border: 2px dotted red;
color: red;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
font-size: 15px;
font-weight: 700;
margin-left: 70%;
cursor: pointer;
}
.clear:hover {
transform: scale(1.1);
transition-duration: 0.25s;
box-shadow: 0px 0px 5px rgb(255, 0, 0);
}
.number:hover {
transform: scale(1.2);
transition-duration: 0.25s;
box-shadow: 0px 0px 20px yellow;
}
.operator:hover {
transform: scale(1.2);
transition-duration: 0.25s;
box-shadow: 0px 0px 20px red;
}
.operator {
height: 50px;
width: 50px;
border: 5px double white;
margin: 10px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 20px;
cursor: pointer;
}
.equal-to {
height: 50px;
width: 130px;
border: 5px double white;
margin: 10px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 20px;
cursor: pointer;
}
.equal-to:hover {
transform: scale(1.2);
transition-duration: 0.25s;
box-shadow: 0px 0px 20px rgb(9, 191, 9);
}
form {
text-align: center;
}