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

receiver_msp.css « tabs « css « src - github.com/iNavFlight/inav-configurator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1b80d18aa06a508dfd1f92a9ce50dd81decb365f (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
128
129
130
131
.control-gimbals {
    /* A generous padding around the window edges ensures that we continue to receive mousemove events (since 
     * cursor stays in the window for longer)
     */
    padding: 25px 25px 0;
    text-align: center;
}

.control-gimbal {
    position: relative;
    width: 120px;
    height: 120px;
    background-color: #eee;
    margin-left: 1em;
    margin-right: 1em;
    margin-bottom: 2em;
    display: inline-block;
    border-radius: 5px;
    cursor: pointer;
}

.crosshair {
    display: block;
    position: absolute;
    background-color: #ddd;
}

.crosshair-vert {
    width: 1px;
    height: 100%;
    left: 50%;
}

.crosshair-horz {
    height: 1px;
    width: 100%;
    top: 50%;
}

.gimbal-label {
    display: block;
    position: absolute;
    text-align: center;
}

.gimbal-label-horz {
    top: calc(100% + 0.5em);
    width: 100%;
}

.gimbal-label-vert {
    transform: rotate(-90deg);
    /*transform-origin:0% 100%;*/
    top: calc(50% - 0.5em);
    width: 100%;
    left: calc(-50% - 1em);
}

.control-stick {
    background-color: rgba(255, 50, 50, 1.0);
    width: 20px;
    height: 20px;
    margin-left: -10px;
    margin-top: -10px;
    display: block;
    border-radius: 100%;
    position: absolute;
    cursor: pointer;
}

.control-slider {
    margin: 20px;
}

.tooltip {
    position: absolute;
    left: calc(100% + 24px);
    top: 0;
}

.control-slider .slider {
    margin-left: 50px;
    margin-right: 50px;
}

.slider-label {
    position: absolute;
    text-align: right;
    width: 50px;
    left: -75px;
}

a {
    text-decoration: none;
    color: #000;
    font-family: 'open_sanssemibold', Arial,serif;
}

a:hover {
    text-decoration: none;
}

.button-enable a {
    /*  common styles for content toolbar buttons */
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    background-color: #37a8db;
    border-radius: 3px;
    border: 1px solid #37a8db;
    color: #fff;
    float: left;
    font-family: 'open_sansbold', Arial,serif;
    font-size: 12px;
    text-shadow: 0 1px rgba(0, 0, 0, 0.25);
    display: block;
    cursor: pointer;
    transition: all ease 0.2s;
    padding: 0 9px;
    line-height: 28px;
}

.button-enable a:hover {
    background-color: #37a8db;
    transition: all ease 0.2s;
}
.button-enable a:active {
    background-color: #37a8db;
    transition: all ease 0.0s;
    box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.35);
}