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

modes.css « tabs « css « src - github.com/iNavFlight/inav-configurator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: abce1710c289f643250f2e611001cc36dfeb7561 (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
.tab-modes .boxes {
    width: 100%;
    border-collapse: collapse;
}

.tab-modes .boxes th, .tab-modes .boxes td {
    line-height: 22px;
    text-align: center;
    border: 1px solid #8b8b8b;
}

.tab-modes .boxes .heads {
    background-color: #ececec;
}

.tab-modes .boxes .main {
    background-color: #ececec;
}

.tab-modes .boxes .name {
    text-align: center;
}

.tab-modes .boxes .on {
    color: white;
    background-color: #37a8db;
}

.tab-modes .boxes .off {
    color: white;
    background-color: #be2222;
}

.tab-modes .boxes td input {
    position: absolute;
    margin-top: -6px;
    margin-left: -6px;
}

.tab-modes .boxes .switches:nth-child(odd) {
    background-color: #ececec;
}

.tab-modes .boxes .heads th:first-child {
    border: 0;
    background-color: white;
}

.tab-modes .buttons {
    width: calc(100% - 20px);
    position: absolute;
    bottom: 10px;
}

.tab-modes .partone {
    width: 18%;
}