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
|
/* line 8, style.scss */
.ios7 .ui-bar-a,
body.ios7 {
background-color: #005cb9;
}
/* line 13, style.scss */
.ios7 .ui-bar-a {
border-color: #005cb9;
}
/* line 17, style.scss */
#load-screen,
#locating {
background: #005cb9;
color: white;
}
/* line 23, style.scss */
#locating #progress-bar {
background-color: #FFFF99;
}
/* line 27, style.scss */
#view-my-reports .draft_count {
background-color: #ba151c;
color: #fff;
border-color: #ffea3d;
}
/* line 33, style.scss */
#display-help {
background-color: #eed11c;
color: grey;
}
/* line 39, style.scss */
.ui-bar-a, .ui-btn-up-a, .ui-btn-hover-a, .ui-btn-down-a {
color: #eee;
border-color: #00366d;
background: #0069d3;
}
/* line 46, style.scss */
.ui-corner-all,
.ui-btn-corner-all {
-webkit-border-radius: 3px;
border-radius: 3px;
}
/* line 52, style.scss */
#load-screen .radar,
#locating .radar {
background-image: url("../images/radar-cuidomiciudad.png");
}
/* line 57, style.scss */
.ui-icon {
background-image: url("../../../css/images/icons-18-white.png");
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (min--moz-device-pixel-ratio: 1.3), only screen and (min-resolution: 200dpi) {
/* line 63, style.scss */
.ui-icon {
background-image: url("../../../css/images/icons-36-white.png");
}
}
/* line 68, style.scss */
div[data-role='header'] .ui-icon-fms-account {
background-image: url(../../../images/user-white@x2.png);
background-size: 18px 18px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (min--moz-device-pixel-ratio: 1.3), only screen and (min-resolution: 200dpi) {
/* line 75, style.scss */
div[data-role='header'] .ui-icon-fms-account {
background-image: url(../../../images/user-white@x2.png);
}
}
/* line 80, style.scss */
#helpContent {
background-color: #005cb9;
text-shadow: none;
color: white;
padding: 1em;
}
/* line 86, style.scss */
#helpContent h1 {
text-align: center;
background-image: url("../images/logo-footer.png");
background-size: contain;
height: 2em;
background-repeat: no-repeat;
background-position: center top;
text-indent: -9999999px;
}
/* line 96, style.scss */
#helpContent a, #helpContent a:visited {
color: #eed11c;
}
/* line 101, style.scss */
#dismiss {
color: white;
text-shadow: 0px 1px 0px silver;
}
/* line 107, style.scss */
#locating p {
text-shadow: none;
}
|