-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
81 lines (80 loc) · 1.49 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
body{
font-family: 'Sarasa Mono SC';
background-color: #2e3440;
text-align: center;
}
#calculator{
width: 320px;
height: 520px;
background-color:#3b4252;
margin: auto;
top: 50px;
position: relative;
border-radius: 20px;
box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}
#result{
height: 120px;
}
#keyboard{
height: 400px;
}
#history{
text-align: right;
height: 20px;
margin: 10px 20px;
padding-top: 20px;
font-size: 15px;
color: #d8dee9;
}
#output{
text-align: right;
height: 60px;
margin: 0 20px;
font-size: 30px;
color: #eceff4;
}
.operator, .number, .functionKeys,.decorator{
width: 50px;
height: 50px;
margin: 15px;
float: left;
border-radius: 30%;
font-family: "Sarasa Mono SC";
color: #2e3440;
border-width: 0;
font-weight: bold;
font-size: 18px;
}
.number, .operator,.functionKeys,.decorator{
cursor: pointer;
}
.operator:active, .number:active, .functionKeys:active,.decorator:active{
font-size: 15px;
}
.operator:focus, .number:focus{
outline: 0;
}
.operator{
background-color: #ebcb8b;
}
#equal{
background-color: #bf616a;
}
.functionKeys{
background-color: #a3be8c;
}
.number{
background-color: #88c0d0;
}
.decorator{
background-color: #d08770;
}
#foot{
color:#78849b;
font-size: 14px;
position:fixed;
bottom: 10px;
width: 100%;
text-align: center;
}