-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
164 lines (150 loc) · 3 KB
/
style.scss
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
@import url('https://fonts.googleapis.com/css?family=Questrial&display=swap');
$theme-color: #3C3939; //#332b36 flag
$theme-keypad-color: #3C3939; //#3d3240 flag
body,html{
min-height: 100vh;
height: 100%;
width: 100%;
font-size: 105%; // flag
font-weight: bold; // flag
font-family: 'Questrial', sans-serif;// flag
}
.theme-1-body-background{
background-color:#F5C9B1;
}
.theme-2-body-background{
background: linear-gradient(135deg,#f87da0,#6f6eb4);
}
.keypad-theme{
border-radius: 5%; //flag
overflow: hidden; //flag
border: 5px solid white; // flag
}
.calcInnerStartDiv-theme{
height: 80vh; //flag
}
.theme-display{
background-color: $theme-color;
color: #ffffff;
text-align: right;
padding-right: 10px;
height: auto;
min-height: 50px;
margin-left: 0;
margin-right: 0;
border-bottom: 5px solid white; //flag //border: 1px solid #000000; flag
}
.theme-2-display{
background-color: #332b36;
color: #ffffff;
text-align: right;
padding-right: 10px;
height: auto;
min-height: 50px;
margin-left: 0;
margin-right: 0;
border: 1px solid #000000;
}
.theme-bg-color{
background-color: $theme-keypad-color;
color: #ffffff;
}
.theme-2-bg-color{
background-color: #3d3240;
color: #ffffff;
}
.container{
height: 100vh;
padding-right: 0;
padding-left: 0;
display: flex;
flex-direction: row;
justify-content: center;
}
@media only screen and (min-width: 320px){
.theme-calc-width{
width: 60%;
}
.theme-2-calc-width{
width: 60%;
}
#main-holder{
height: inherit;
width: inherit;
margin-right: 0;
margin-left: 0;
padding-top: 20px;
}
}
@media only screen and (min-width: 760px){
.theme-calc-width{
width: 20%;
}
.theme-2-calc-width{
width: 40%;
}
#main-holder{
height: inherit;
width: inherit;
margin-right: 0;
margin-left: 0;
}
}
.calc-btn-height{
//min-height: 50px; flag
height: auto;
}
.theme-2-calc-btn-height{
min-height: 50px;
height: auto;
}
.calc-btn-border{
//border: 0.02px solid #272129; flag
}
.theme-2-calc-btn-border{
border: 0.02px solid #272129;
}
.calc-content-layout{
display: flex;
justify-content:center;
align-items: center;
}
.calc-content-layout:hover{
background-color: #8a6d92;
cursor: pointer;
/* To make text unselectable for copying or other purposes*/
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.button-press-effect{
animation-name: press-effect;
animation-duration: 0.3s;
animation-iteration-count:1;
animation-timing-function: ease;
}
@keyframes press-effect{
50%{
background-color: #332B36;
}
}
#theme-btn-holder{
padding : 20px 0px 20px 0px;
width: 100%;
margin-right: 0;
margin-left: 0;
}
#button-theme{
display: flex;
flex-direction: center;
font-size: 15px;
display: flex;
flex-direction: row;
justify-content: center;
background-color: #3C3939;
color: #ffffff;
border: none;
}