Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gps.css « tabs « css « src - github.com/iNavFlight/inav-configurator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 94bc6ead55f26e1e6320efb42ae4a4a202d5ab15 (plain)
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
.tab-gps progress {
    width: 100%;
    border-radius: 3px;
}

.tab-gps .GPS_info .head, .tab-gps .GPS_signal_strength .head {
    display: block;
    text-align: center;
    line-height: 20px;
    font-weight: bold;
    border-bottom: 1px solid silver;
    background-color: #ececec;
}

.tab-gps #connect {
    display: none;
    text-align: center;
    padding-top: 40%;
}

.tab-gps #waiting {
    margin-top: 0;
    display: none;
    text-align: center;
    padding-top: 0;
    background-size: 15%;
    min-height: 400px;
    background: url(../../../images/loading-bars.svg) no-repeat center 40%;
    float: left;
    width: 100%;
}

.tab-gps #waiting .info {
    margin-top: 30%;
}

.tab-gps #loadmap {
    margin-top: 0;
    display: none;
}

.tab-gps #connect a {
    font-weight: bold;
    margin-top: 10px;
}

.tab-gps #loadmap {
    height: 100%;
    width: 100%;
    float: left;
}

.tab-gps #loadmap .controls {
    width: 100%;
    float: left;
    height: 33px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    background-color: #D1D1D1;
}

.tab-gps #loadmap .controls a {
    background-color: white;
    border-radius: 4px;
    border: 1px silver solid;
    color: grey;
    height: 10px;
    width: 10px;
    text-align: center;
    font-size: 20px;
    line-height: 10px;
    padding: 6px;
    margin-top: 5px;
    float: right;
}

.tab-gps #loadmap .controls a:hover {
    background-color: #f5f5f5;
}

.tab-gps #loadmap .controls a:active {
    background-color: #e6e6e6;
}

.tab-gps #loadmap .controls a:first-child {
    margin-left: -1px;
    margin-right: 5px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.tab-gps #loadmap .controls a:last-child {
    margin-right: 0;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.tab-gps iframe {
    height: 400px;
    width: 100%;
    float: left;
}

/*noinspection ALL*/
progress[value]::-webkit-progress-bar {
    background-color: #d2d2d2;
    border-radius: 2px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.25) inset;
}

/*noinspection ALL*/
progress[value]::-webkit-progress-value {
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .15), rgba(0, 0, 0, .15)),
    -webkit-linear-gradient(left, #39a9dc, #39a9dc);
    border-radius: 2px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.25) inset;
}

@media only screen and (max-width: 1055px) , only screen and (max-device-width: 1055px) {

    .tab-gps iframe {
        height: 347px;
        width: 100%;
        float: left;
    }

}