-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
74 lines (74 loc) · 1.17 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
* {
margin: 0px;
padding: 0px;
}
body {
height: 100vh;
width: 100vw;
display: flex;
align-items: center;
justify-content: center;
}
.claculator {
height: 700px;
width: 450px;
background-color: #1a1a1c;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
border-radius: 20px;
}
.display {
height: 15%;
width: 100%;
}
.btn {
border: 0px;
outline: 0px;
height: 85px;
width: 85px;
font-size: 40px;
cursor: pointer;
box-shadow: 1px 1px 10px 1px black;
border-radius: 20px;
font-size: 40px;
font-weight: 600;
color: white;
background-color: #4e4e50;
}
.btn:hover {
background-color: #4e4e50c8;
}
.sub {
height: fit-content;
width: 100%;
display: flex;
align-items: center;
justify-content: space-around;
}
.display input {
height: 100%;
width: 100%;
outline: 0px;
border: 0px;
color: #c3083f;
background-color: transparent;
font-size: 70px;
font-weight: 700;
}
.color {
background-color: #9f9fa1;
}
.color:hover {
background-color: #9f9fa1c8;
}
.same-color {
background-color: #c3083f;
}
.same-color:hover {
background-color: #c30840c5;
}
.equal {
width: 200px;
}