1
1
# calculator {
2
- width : 475px ;
2
+ width : 40% !important ;
3
+ min-width : 320px ;
3
4
height : auto;
4
5
5
- margin : 100 px auto;
6
- padding : 20 px 20 px 9 px ;
6
+ margin : 0 auto;
7
+ padding : 1 em ;
7
8
8
9
background : # 949494 ;
9
- /*background: linear-gradient(#9dd2ea, #8bceec);*/
10
- border-radius : 3px ;
11
- }
12
- .cal-top {
13
- position : relative;
14
- top : -70px ;
15
- }
16
- /* Top portion */
17
- .top span .clear {
18
- float : left;
10
+ box-shadow : .15em .15em .15em rgba (0 , 0 , 0 , .2 );
11
+ border-radius : .2em ;
19
12
}
20
13
21
- /* Inset shadow on the screen to create indent */
22
- .top .screen {
23
- height : 65px ;
24
- width : 426px ;
25
- float : left;
26
- padding : 10px 10px ;
27
- background : rgb (255 , 255 , 255 );
28
- border-radius : 3px ;
29
- /*box-shadow: inset 0px 4px rgba(0, 0, 0, 0.2);*/
30
- font-size : 17px ;
31
- line-height : 40px ;
32
- color : white !important ;
33
- text-shadow : 1px 1px 2px rgba (0 , 0 , 0 , 0.2 );
34
- text-align : right;
35
- letter-spacing : 1px ;
36
- margin-bottom : 2% ;
14
+ # calculator * {
15
+ border-radius : .2em ;
16
+ border : none;
17
+ outline : none;
18
+ cursor : pointer;
37
19
}
38
20
39
- /* Clear floats */
40
- . keys , . top {
41
- overflow : hidden ;
21
+ # calculator input {
22
+ background : white;
23
+ text-shadow : .1 em .1 em .1 em rgba ( 0 , 0 , 0 , .1 ) ;
42
24
}
43
25
44
- /* Applying same to the keys */
45
- .keys span , .top span .clear {
46
- float : left;
47
- position : relative;
48
- top : 0 ;
49
-
50
- cursor : pointer;
51
-
52
- width : 65px ;
53
- height : 36px ;
54
-
26
+ /* Inset shadow on the screen to create indent */
27
+ .screen {
28
+ width : 100% ;
29
+ padding : .5em ;
30
+ margin : .5em 0 ;
31
+ font-size : 1em ;
32
+ line-height : 1.25em ;
33
+ color : white;
55
34
background : white;
56
- border-radius : 3px ;
57
- box-shadow : 0px 2px rgba (0 , 0 , 0 , 0.2 );
58
-
59
- margin : 0 7px 11px 0 ;
60
-
61
- line-height : 36px ;
62
- text-align : center;
63
-
64
- /* prevent selection of text inside keys */
65
- user-select : none;
66
-
67
- /* Smoothing out hover and active states using css3 transitions */
68
- transition : all 0.2s ease;
35
+ box-shadow : .15em .15em .15em rgba (0 , 0 , 0 , .2 );
69
36
}
70
37
71
- /* Remove right margins from operator keys */
72
- /* style different type of keys (operators/evaluate/clear) differently */
73
- .keys span .operator {
74
- background : # FFF0F5 ;
75
- margin-right : 0 ;
38
+ # resultText {
39
+ width : 100% ;
40
+ height : 70% ;
41
+ text-align : right;
42
+ font-size : 1.2em ;
43
+ outline : none;
76
44
}
77
45
78
- .keys span .eval {
79
- background : # a6e3e4 ;
80
- /*box-shadow: 0px 4px #9da853;*/
81
-
46
+ # seq {
47
+ width : 100% ;
48
+ height : 30% ;
49
+ text-align : right;
50
+ font-size : .75em ;
82
51
}
83
52
84
- .top span . clear {
85
- background : # ff9fa8 ;
86
- box-shadow : 0 px 4 px # ff7c87 ;
87
- color : white ;
53
+ .keys-row {
54
+ width : 100 % ;
55
+ display : flex ;
56
+ flex-wrap : wrap ;
88
57
}
89
58
90
- /* Some hover effects */
91
- .keys span : hover {
92
- background : # d9d5ec ;
93
- color : white;
59
+ .keys-col-4 {
60
+ width : calc (100% / 12 * 4 );
94
61
}
95
62
96
- .keys span .eval : hover {
97
- background : # 96cfd0 ;
98
- /*box-shadow: 0px 4px #717a33;*/
99
- color : # ffffff ;
100
- }
101
- input # seq : focus {
102
- outline : none;
103
- background : transparent;
104
- }
105
- .top span .clear : hover {
106
- background : # f68991 ;
107
- box-shadow : 0px 4px # d3545d ;
108
- color : white;
63
+ .keys-col-8 {
64
+ width : calc (100% / 12 * 8 );
109
65
}
110
66
111
- .keys span : active {
112
- top : 4px ;
67
+ .adv-keys span {
68
+ width : calc (100% / 2 - .2em );
69
+ margin : .1em ;
113
70
}
114
71
115
- .keys span . eval : active {
116
- box-shadow : 0 px 0 px # 717a33 ;
117
- top : 4 px ;
72
+ .base- keys span {
73
+ width : calc ( 100 % / 4 - .2 em ) ;
74
+ margin : .1 em ;
118
75
}
119
76
120
- .top span .clear : active {
121
- top : 4px ;
122
- box-shadow : 0px 0px # d3545d ;
77
+ /* Applying same to the keys */
78
+ .keys * {
79
+ float : left;
80
+ width : 100% ;
81
+ box-shadow : .1em .1em .1em rgba (0 , 0 , 0 , .2 );
82
+ text-align : center;
83
+
84
+ /* prevent selection of text inside keys */
85
+ user-select : none;
86
+
87
+ /* Smoothing out hover and active states using css3 transitions */
88
+ transition : all .2s ease;
123
89
}
124
90
125
- .sp {
126
- margin-right : 7px !important ;
91
+ /* Remove right margins from operator keys */
92
+ /* style different type of keys (operators/evaluate/clear) differently */
93
+ .keys .operator input {
94
+ background : # FFF0F5 !important ;
127
95
}
128
96
129
- input {
130
- border : none;
131
- background : none;
97
+ .keys .eval input {
98
+ background : # a6e3e4 !important ;
132
99
}
133
100
134
- .clear {
101
+ .keys . clear input {
135
102
background : # dcbd5e !important ;
136
- color : # fff ;
137
103
}
138
104
139
- input .num {
140
- width : 100% !important ;
141
- }
142
- input .num : focus {
143
- outline : none;
144
- }
145
- input # resultText {
146
- outline : none;
147
- padding-bottom : 4px ;
148
- width : 100% ;
149
- float : right;
150
- text-align : right;
151
- height : 15px ;
152
- position : relative;
153
- top : -10px ;
105
+ /* Some hover effects */
106
+ .keys span : hover {
107
+ opacity : .75 ;
108
+ top : .1em ;
154
109
}
155
- input [type = "text" ], textarea {
156
- background-color : rgb (255 , 255 , 255 );
157
- background-image : none;
158
- color : rgb (0 , 0 , 0 );
110
+
111
+ .keys * : active {
112
+ top : .1em ;
159
113
}
160
- input # seq {
161
- width : 100% ;
162
- text-align : right;
163
- padding : 0px !important ;
164
- margin : 0px !important ;
165
- position : relative;
166
- top : -15px ;
167
- font-size : 10px ;
168
- }
0 commit comments