-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
104 lines (89 loc) · 1.62 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
*{
margin: 0;
padding: 0;
font-size: 40px;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
#outer{
width:400px;
height:500px;
background-color: #020001;
margin:auto;
margin-top:100px;
border-radius: 30px;
color:#000000;
overflow: hidden;
}
#show{
width:380px;
height: 220px;
margin:auto;
overflow: hidden;
}
#show .formula{
width:380px;
height:100px;
background-color: #ccccd6;
transform: translateY(12px);
border-radius: 15px;
overflow: hidden;
text-align: right;
}
#show .inAndOut{
display:flex;
justify-content: space-between;
}
#show .inAndOut .result{
width:187px;
height: 90px;
background-color: #ccccd6;
border-radius: 15px;
margin-top:20px;
overflow: hidden;
}
#show .inAndOut .input{
width:187px;
height: 90px;
background-color: #ccccd6;
margin-top:20px;
border-radius: 15px;
overflow: hidden;
text-align: right;
}
/* 以下按键区域 */
#key{
width:380px;
height:270px;
background-color: gray;
margin:auto;
display: flex;
justify-content: space-between;
border-radius: 30px;
}
.numberKey{
width:230px;
height:270px;
background-color: gray;
border-radius: 30px;
}
.functionKey{
width:140px;
height: 270px;
}
.numberKey button{
border-radius: 10px;
width:60px;
height:50px;
margin:15px 0 0 6px;
outline: none;
}
.functionKey button{
border-radius: 10px;
width:60px;
height:50px;
margin:15px 4px 0 0;
outline: none;
}
#btnCal{
width:135px;
}