-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
121 lines (109 loc) · 2.26 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
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
114
115
116
117
118
119
120
121
body {
background-color: #66fcf1;
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
/*===============================
Calculator Structure
=============*/
#calc {
width: 350px;
height: 450px;
padding: 20px;
border-radius: 20px;
margin: 20px auto;
background: #d6c9f2;
box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
rgba(0, 0, 0, 0.22) 0px 15px 12px;
}
#calc-display {
margin-bottom: 20px;
background: #c2dfe3;
box-shadow: inset -5px 5px 4px #abc4c8, inset 5px -5px 4px #d9fafe;
height: 35px;
width: 300px;
padding: 5px;
outline: none;
border-radius: 10px;
text-align: right;
font-family: sans-serif;
font-size: 14px;
color: #1d282b;
font-weight: bolder;
font-size: 18px;
border: none;
}
.keys {
cursor: pointer;
outline: none;
color: #e0fbfc;
background: #253237;
width: 50px;
height: 50px;
margin: 12px;
font-weight: bold;
border: none;
font-size: 18px;
border-radius: 10px;
box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
rgba(0, 0, 0, 0.22) 0px 15px 12px;
}
.key2 {
position: relative;
top: -30px;
left: -8px;
}
.key3 {
position: relative;
top: -60px;
left: -40px;
}
.keys:active {
border: none;
background: #253237;
box-shadow: inset -8px 8px 16px #1d282b, inset 8px -8px 16px #2d3d43;
color: #e0fbfc;
}
.bottom {
position: relative;
left: -2px;
}
#equals {
cursor: pointer;
outline: none;
color: #000;
width: 50px;
height: 135px;
border: none;
margin-right: 10px;
color: #e0fbfc;
background: #253237;
box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
rgba(0, 0, 0, 0.22) 0px 15px 12px;
border-radius: 10px;
}
#equals:active {
border: none;
background: #253237;
box-shadow: inset -8px 8px 16px #1d282b, inset 8px -8px 16px #2d3d43;
color: #e0fbfc;
}
.set {
position: relative;
top: 5px;
left: 5px;
}
div > h3 {
color: #aaa;
opacity: 0.56;
font-family: sans-serif;
letter-spacing: 3px;
text-shadow: 1px 4px #111;
}
.spacer {
padding: 50px;
}