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

profiles.css « tabs « css « src - github.com/iNavFlight/inav-configurator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 01de124ac5623adb961cac4f086d4a34589ec925 (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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
.tab-configuration #presets-list option {
    padding: 0.4em;
    cursor: pointer;
}

.tab-configuration .preset__head {
    color: #37a8db;
    margin-top: 15px;
}

.tab-configuration .preset__description {
    margin-top: 3px;
}

.tab-configuration .preset__description span {
    margin-top: 5px;
    font-family: 'open_sansregular', Arial, serif;    
}

.tab-configuration .preset__features {
    margin-top: 0px;
}

.tab-configuration .preset__feature {
    list-style: inside disc;
    list-style-type: afar;
    color: #37a8db;
}

.tab-configuration .preset__feature-text {
    color: #000000;
    margin-left: -0.5em;
}

.tab-configuration #preset-image {
    width: 120px;
    height: 120px;
    background-image:url(../../../images/icons/peset_default.svg);
    background-size:contain;
    background-repeat:no-repeat;
    float: left;
    margin-right: 20px;
}
 
.tab-configuration .clearboth {
    width:100%;
    clear:both;
}
     
.tab-configuration .preset__list-wrapper {
    background-color: #525252;
    background: #525252 -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.35));
    min-height: 400px;
    border-right: 3px solid #37a8db;
    overflow:hidden;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    box-shadow: inset -10px 0px 20px rgba(50,50,50, 0.5);
}
    
 .tab-configuration .list-menu ul {   
}
 
 .tab-configuration .list-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.30);
}
    
.tab-configuration .list-menu li:last-child {
    border-bottom: none;
}
     

.tab-configuration .list-menu li a {
    font-family: 'open_sansregular', Arial, serif;
    display:block;
    height:30px;
    line-height: 30px;
    font-size: 13px;
    padding-left: 10px;
    text-shadow: 0 1px rgba(0, 0, 0, 0.45);
    border-top: solid 1px rgba(255, 255, 255, 0.07);
    color: #999999;
    overflow: hidden;
}
 
.tab-configuration .list-menu li a:hover {
    background-color: rgba(128, 128, 128, 0.50);
    color: white;
    text-shadow: 0 1px rgba(0, 0, 0, 0.45);
}

.tab-configuration .preset {
    width: calc(75% - 5px);   
}
 
.tab-configuration .preset-spacer {
    padding: 20px;
    float:left;
    width: calc(100% - 38px);
}
     
.tab-configuration .list-menu li.active a {
    background-color: #37a8db;
    text-shadow: 0 1px rgba(0, 0, 0, 0.45);
    color: white;

}
 
.tab-configuration .airplane {
    width: 100%;
    height: 100%;
    background-image:url(../../../images/icons/peset_plane.svg);
}
    
.tab-configuration .flyingwing {
    width: 100%;
    height: 100%;
    background-image:url(../../../images/icons/peset_wing.svg);
   
}
    
.tab-configuration .multirotor {
    width: 100%;
    height: 100%;
    background-image:url(../../../images/icons/peset_quad.svg);
}
     
.tab-configuration .preset .top {
    background-color: #e6e6e6;
    box-shadow: inset 0px -5px 5px rgba(50,50,50, 0.1);
    border-top-right-radius: 3px;
}
    
.tab-configuration .preset .bottom {
    border-bottom-right-radius: 3px;    
}

.tab-configuration .modal__content h1 {
    margin-top: 20px;
    margin-bottom: 0px;
} 

.tab-configuration #details-head {
    display: none;
    float: left;
    width: 100%;
    margin-bottom: 5px;
}