-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
89 lines (89 loc) · 1.24 KB
/
Copy pathstyle.css
File metadata and controls
89 lines (89 loc) · 1.24 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
body
{
display:flex;
align-items:center;
justify-content:center;
background:linear-gradient(to right,#00AAFF,#00FF6C);
}
#table
{
position:relative;
max-width:320px;
max-height:400px;
height:100%;
width:100%;
border-radius:15px;
cursor:pointer;
background:#3a4452;
}
#table input[type="button"]
{
cursor:pointer;
border:0;
outline:0;
border-radius:10px;
box-shadow:-8px -8px 15px rgba(255,255,255,0.1),5px 5px 15px rgba(0,0,0,0.2);
background:transparent;
font-size:27px;
}
#table input[type="button"]:active
{
background:#444E5C;
}
.operator
{
width:65px;
height:60px;
color: aqua;
}
.operand
{
width:65px;
height:60px;
color: white;
}
.long
{
width:65px;
height:130px;
color:aqua;
}
#zero
{
width:145px;
height:60px;
color: white;
}
#screen
{
background:#3a4452;
color:white;
border:none;
outline:none;
max-height:70px;
max-width:300px;
height:100%;
width:100%;
text-align:right;
font-size:40px;
padding:10px;
cursor:text;
}
#history
{
background:#3a4452;
color:#E0E5E5;
border:none;
outline:none;
max-height:35px;
max-width:300px;
height:100%;
width:100%;
text-align:right;
font-size:20px;
padding-left:10px;
padding-right:10px;
padding-top:10px;
padding-bottom:0px;
cursor:text;
}