aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/serverProfile/styles.css
blob: 87487ecbaa818ef9a2dfa77c312f23b6d6d07908 (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
.vc-gp-root {
    height: 100%;
    user-select: text;
}

.vc-gp-banner {
    width: 100%;
    cursor: pointer;
}

.vc-gp-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5em;
    margin: 0.5em;
}

.vc-gp-header img {
    width: 48px;
    height: 48px;
    cursor: pointer;
}

.vc-gp-name-and-description {
    display: flex;
    flex-direction: column;
    gap: 0.2em;
}

.vc-gp-name {
    margin: 0;
}

.vc-gp-tab-bar {
    border-bottom: 2px solid var(--background-modifier-accent);
    margin: 20px 12px 0;
    display: flex;
    gap: 40px;
    align-items: stretch;
    flex-direction: row;
}

.vc-gp-tab {
    border-bottom: 2px solid transparent;
    color: var(--interactive-normal);
    cursor: pointer;
    height: 39px;
    line-height: 14px;
}

.vc-gp-tab-content {
    margin: 1em;
}

.vc-gp-tab:where(.vc-gp-selected, :hover, :focus) {
    border-bottom-color: var(--interactive-active);
}

.vc-gp-info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1em;
}

.vc-gp-server-info-pair {
    color: var(--text-normal);
}

.vc-gp-server-info-pair [class^="timestamp"] {
    margin-left: 0;
}

.vc-gp-owner {
    display: flex;
    align-items: center;
    gap: 0.2em;
}

.vc-gp-owner img {
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
}

.vc-gp-scroller {
    width: 100%;
    max-height: 500px;
}

.vc-gp-scroller [class^="listRow"] {
    margin: 1px 0;
}

.vc-gp-scroller [class^="listRow"]:hover {
    background-color: var(--background-modifier-hover);
}