-
Notifications
You must be signed in to change notification settings - Fork 0
/
calci.css
94 lines (82 loc) · 1.99 KB
/
calci.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
body {
padding: 0;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
user-select: none;
background: #ecf0f3;
}
.container {
margin-left: 1.8em;
padding: 20px;
border-radius: 8px;
box-shadow: 13px 13px 20px #cbced1,
-13px -13px 20px #ffffff;
}
.content {
width: 100%;
margin-top: 1.7em;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.row button {
width: 60px;
height: 30px;
font-size: 16px;
border: none;
outline: none;
margin: 5px;
border-radius: 4px;
transition: .1s;
box-shadow: 5px 5px 8px #00000020,
-5px -5px 8px #ffff;
}
.row button:hover {
box-shadow: inset 5px 5px 8px rgba(16, 16, 16, .1),
inset -5px -5px 8px #fff;
background: #fff;
}
.display #screen {
margin-bottom: .5em;
width: auto;
height: 70px;
font-size: 35px;
outline: none;
border: none;
text-align: right;
padding-right: .5em;
background: #ecf0f3;
border-radius: 6px;
box-shadow: inset 8px 8px 8px #cbced1,
inset -8px -8px 8px #ffffff;
}
#eval {
background: #33ccff;
color: #fff;
box-shadow: inset 5px 5px 8px #66d9ff,
inset -5px -5px 8px #00ace6;
}
#eval:hover {
box-shadow: inset 5px 5px 8px #00ace6,
inset -5px -5px 8px #00ace6;
}
#ac {
background: #33cc33;
color: #fff;
}
#ac:hover {
box-shadow: inset 5px 5px 8px #2eb82e,
inset -5px -5px 8px #33cc33;
}
#ce {
background: #ff3399;
color: #fff;
}
#ce:hover {
box-shadow: inset 5px 5px 8px #e60073,
inset -5px -5px 8px #ff3399;
}