aboutsummaryrefslogtreecommitdiff
path: root/Neutron-trunk/resources/css/admin_v2/inner.css
blob: 8c928a173493c40aca09ac59a987643a1640247a (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
body {
    margin: 30px 0 0;
}

#system-head {
    display: grid;
    grid-template-columns: 160px 1fr;
    margin-bottom: 30px;
}

#system-head-banner {
    background: #000;
    width: 150px;
    height: 80px;
    padding: 5px;
    border-radius: 10px;
}

#system-head-banner-image {
    background-image: var(--mpcms-banner);
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

#system-head-version {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.inner-item {
    background-color: rgba(0, 0, 0, .5);
    border-radius: 10px;
    padding: 10px 20px;
    display: grid;
    cursor: default;
    grid-template-columns: 32px 1fr 32px;
}

.inner-item:hover {
    background-color: rgba(0, 0, 0, .75);
}

.inner-item:active, .inner-item:focus {
    background-color: rgba(0, 0, 0, 1);
}

.inner-item-image-outer {
    vertical-align: middle;
    display: flex;
    align-items: center;
    width: 32px;
}

.inner-item-image {
    vertical-align: middle;
    filter: invert(1);
    width: 32px;
}

.inner-item-enter-outer {
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 32px;
}

.inner-item-enter {
    text-align: center;
    vertical-align: middle;
    filter: invert(1);
    width: 24px;
}

.inner-item-text {
    margin-left: 15px;
    display: flex;
    margin-top: 5px;
    margin-bottom: 5px;
    align-items: center;
}

.inner-item-description {
    opacity: .5;
}