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

defaults_dialog.css « css « src - github.com/iNavFlight/inav-configurator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9ec599a731762ca87b3c03cc5a221ade12dc6c67 (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
.defaults-dialog__background {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: black;
    opacity: 0.75;
    z-index: 2001;
}

.defaults-dialog__content {
    background-color: #efefef;
    border-radius: 2px;
    z-index: 2002;
    position: absolute;
    width: 500px;
    height: 485px;
    overflow: none;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding: 1em;
}

.defaults-dialog__content--wrapper {
    overflow-y: auto;
}

.defaults-dialog__info {
    font-size: 1.3em;
    margin-bottom: 1em;
}

.defaults_btn {
    float: none;
    display: block;
    margin-top: 1em;
}

.defaults_btn a {
    font-size: 1.4em;
    line-height: 25px;
}

.defaults_btn--not-recommended a {
    color: #444;
    border: 1px solid #666;
    background-image: linear-gradient(45deg, #fcea97 25%, #ffffff 25%, #ffffff 50%, #fcea97 50%, #fcea97 75%, #ffffff 75%, #ffffff 100%);
    background-size: 56.57px 56.57px;
}

.defaults_btn--not-recommended a:hover {
    color: #222 !important;
}