-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
100 lines (94 loc) · 1.91 KB
/
style.css
File metadata and controls
100 lines (94 loc) · 1.91 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
body {
background-color: #e0fbfc;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
#calc {
width: 350px;
height: 500px;
padding: 20px;
border-radius: 20px;
margin: 20px auto;
background: #253237;
box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
rgba(0, 0, 0, 0.22) 0px 15px 12px;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
color: #abc4c8;
}
#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: Quicksand;
font-size: 14px;
color: #1d282b;
font-weight: bolder;
font-size: 18px;
border: none;
}
.keys {
cursor: pointer;
outline: none;
color: #e0fbfc;
background: #253237;
box-shadow: -8px 8px 16px #1d282b,
8px -8px 16px #2d3d43;
width: 50px;
height: 50px;
margin: 10px;
font-weight: bold;
border: none;
font-size: 18px;
}
.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: 135px;
height: 45px;
border: none;
margin-right: 10px;
color: #e0fbfc;
background: #253237;
box-shadow: -8px 8px 16px #1d282b,
8px -8px 16px #2d3d43;
}
#equals:active {
border: none;
background: #253237;
box-shadow: inset -8px 8px 16px #1d282b,
inset 8px -8px 16px #2d3d43;
color: #e0fbfc;
}
div > h3 {
color: #aaa;
opacity: 0.56;
font-family: Quicksand;
letter-spacing: 3px;
text-shadow: 1px 4px #111;
}
.spacer {
padding: 50px;
}