-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathstyle.css
160 lines (145 loc) · 3.03 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
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
#outer-container { position: relative; margin: 0 55px; }
#outer-container.android, #outer-container.feature {
height: 800px;
display: grid;
grid-template-columns: 400px 400px 500px;
}
#outer-container.fullscreen {
width: 100%;
height: 100%;
}
#simulator-container {
position: relative;
height: 100%;
width: 100%;
margin: 24px 0;
color: white;
font-family: "Roboto", sans-serif;
}
.instructions-container {
margin: 50px 0 0 36px;
font-weight: 400;
line-height: 1.3;
}
.instructions-container b {
font-weight: 600;
}
.phone-img {
position: absolute;
max-height: 100%;
}
#android-img { width: 341px; }
.android #feature-img { display: none; }
.feature #android-img { display: none; }
.fullscreen .phone-img { display: none; }
#screen, .keyboard { position: absolute; }
.android #screen {
width: 287px;
height: 553px;
margin: 55px 27px;
background: #303030;
border-radius: 6px
}
.feature #screen {
width: 241px;
height: 320px;
margin: 67px 28px;
}
.feature .keyboard {
width: 276px;
height: 240px;
margin: 17px 10px;
bottom: 0;
}
.feature .keyboard .keys {
width: 100%;
height: 100%;
}
.feature .keyboard .keys .keycolumn {
display: inline-block;
width: 87px;
}
.feature .keyboard .keys .key {
width: 87px;
height: 37px;
}
.feature .keyboard .keys .key.press {
background-color: orange;
opacity: 0.2;
}
.fullscreen #screen {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: #303030;
}
#ussd-box { position: relative; }
.android #ussd-box, .fullscreen #ussd-box {
width: 211px;
padding: 22px 23px 48px 23px;
margin: 45% auto;
border-radius: 4px;
background: #424242;
box-shadow: 0 22px 38px #00000042;
color: #FFFFFFB3;
font-family: "Roboto", sans-serif;
}
.feature #ussd-box {
top: 45%;
transform: translateY(-50%);
width: 191px;
padding: 10px 14px;
margin: 24px 11px 11px;
border-radius: 4px;
background: linear-gradient(#505050, #171717);
font-family: "Nokia Regular", sans-serif;
}
#menu-text {
white-space: pre-line;
line-height: 18px;
margin-bottom: 16px;
}
input#menu-entry {
display: block;
max-width: 100%;
border: none;
outline: none;
padding-bottom: 5px;
background: transparent;
color: white;
border-bottom: 1px solid #FFFFFF61;
}
.android #menu-entry, .fullscreen #menu-entry { caret-color: #FF4C00; }
#inline-error, #collections-error { color: red; margin: 8px 0; }
.android #inline-error, .fullscreen #inline-error { color: #FFFFFF61; }
.android #buttons, .fullscreen #buttons { position: absolute; right: 0; }
.android .dialog-btn, .fullscreen .dialog-btn {
height: 36px;
padding: 11px 17px;
background: transparent;
text-transform: uppercase;
font-family: "Roboto", sans-serif;
border-radius: 2px;
border: none;
color: #FF4C00;
}
.feature .dialog-btn {
height: 30px;
background: linear-gradient(#505050, #171717);
font-family: "Nokia Regular", sans-serif;
box-shadow: 0 2px 2px #000000;
border-radius: 4px;
border: none;
color: white;
}
p.info {
font-size: 12px;
margin-top: 0px;
margin-bottom: 21px;
width: 250px;
}
.pull-right {
float: right;
}