-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
112 lines (98 loc) · 2.01 KB
/
Copy pathstyles.css
File metadata and controls
112 lines (98 loc) · 2.01 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font: bold 14px Arial, sans-serif;
}
html {
height: 100%;
background: #79d7fd;
background: radial-gradient(circle, #79d7fd 20%, #00bbfa);
background-size: cover;
}
#calculator {
width: 325px;
height: auto;
margin: 210px auto;
padding: 20px 20px 9px;
background: #001736;
background: linear-gradient(#001736, #00183e);
border-radius: 3px;
box-shadow: 0px 4px #00bbfa, 0px 10px 15px rgba(0,0,0,0.2);
}
#screen {
float: right;
height: 40px;
width: 212px;
padding: 0 10px;
background: rgba(255, 255, 255, 0.2);
border-radius: 3px;
box-shadow: inset 0px 4px rgba(255, 255, 255, 0.2);
font-size: 17px;
line-height: 40px;
color: white;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
text-align: right;
letter-spacing: 1px;
}
.keys, .top {
overflow: hidden;
}
.keys span, #clear {
float: left;
position: relative;
top: 0;
cursor: pointer;
width: 66px;
height: 36px;
background: #79d7fd;
border-radius: 3px;
box-shadow: 0px 4px rgba(0, 0, 0, 0.2);
margin: 0 7px 11px 0;
color: #001736;
line-height: 36px;
text-align: center;
user-select: none;
transition: all 0.2s ease;
}
.keys span.operator {
background: #00bbfa;
margin-right: 0;
}
.keys span.eval {
background: #ffc54a;
box-shadow: 0px 4px #c99736;
color: #001736;
}
.keys span.eval:hover {
background: #d9a63b;
box-shadow: 0px 4px #9c7427;
color: white;
}
.keys span.eval:active {
box-shadow: 0px 0px #9c7427;
top: 4px;
}
#clear {
background: #ff9fa8;
box-shadow: 0px 4px #ff7c87;
color: white;
}
#clear:hover {
background: #f68991;
box-shadow: 0px 4px #d3545d;
color: white;
}
#clear:active {
top: 4px;
box-shadow: 0px 0px #d3545d;
}
.keys span:hover {
background: #00bbfa;
box-shadow: 0px 4px #007bb5;
color: white;
}
.keys span:active {
box-shadow: 0px 0px #007bb5;
top: 4px;
}