-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalculator.css
139 lines (136 loc) · 2.55 KB
/
calculator.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
@font-face {
font-family: Digital-7;
src: url(digital-7.ttf);
}
*:focus{
outline: none;
}
.wrapperMain{
border: 4px solid gray;
width: 323px;
height: 370px;
margin: auto;
border-radius: 5%;
background: linear-gradient(to bottom, #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#000000 51%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%);
padding-left: 15px;
box-shadow: 3px 5px 5px black;
}
.screen{
width: 282px;
height: 76px;
margin-top: 15px;
margin-left: 3px;
border-radius: 10px;
border: 1px solid gray;
padding: 5px 10px;
font-size: 36px;
text-align: right;
background: white;
position: relative;
}
.screen::before{
background: url(http://www.seosunshine.com/Images/logo-seoshunshine.png);
background-size: cover;
width: 100%;
height: 83px;
opacity: 0.2;
content: "";
top: 0;
left: 0;
position: absolute;
}
.screenBoxes{
float: right;
display: block;
border: none;
text-align: right;
background: none;
opacity: 1;
font-family: Digital-7;
}
#screenMemory{
font-size: 15px;
color: gray;
width: 90%;
}
#screenOperation{
font-size: 15px;
color: gray;
}
#screenText{
font-size: 42px;
color: orange;
width: 100%;
}
.btnClear{
font-size: 24px;
}
.btnBack{
width: 138px;
}
.btnBack span{
font-size: 28px;
font-weight: bold;
width: 138px;
position: relative;
line-height: 17px;
}
button{
font-size: 20px;
background: linear-gradient(to bottom, #fceabb 0%,#fccd4d 50%,#f8b500 51%,#fbdf93 100%);
color: Black;
border: 2px solid gray;
height: 33px;
width: 60px;
display: inline-block;
margin: 4px;
text-align: center;
font-family: arial;
border-radius: 5px;
box-shadow: 0px 5px 1px gray;
}
button:hover{
text-shadow: 0 0 10px;
}
button:active{
position: relative;
top: 3px;
box-shadow: none;
font-weight: bold;
}
.operations{
float:right;
width: 25%;
}
.numberButtons{
float:left;
width: 75%;
margin-bottom: 9px;
}
.numberButtons button{
width: 69px;
}
.twoCol{
width: 150px !important;
}
.twoRow{
height: 76px !important;
}
.madein{
width: 55%;
height: 18px;
margin-top: 16px;
text-align: center;
vertical-align: bottom;
background: #7FBF7F;
font-size: 10px;
font-family: arial;
clear: both;
border-radius: 18px;
opacity: 0.95;
padding-top: 5px;
margin: auto;
}
.crescent{
color: green;
}