blob: 9a2e8044231e0ac2370fcc21edb8e528137c93cf (
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
|
#frame-about-general {
display: grid;
grid-template-columns: 64px 1fr;
}
#frame-about-general-icon {
width: 64px;
}
#frame-contents {
padding: 10px;
}
#frame-about-general-text {
display: flex;
align-items: center;
margin-left: 10px;
}
#frame-about-debug {
width: 100%;
font-size: 12px;
margin-top: 10px;
}
.frame-about-section * {
max-width: 50vw;
text-overflow: ellipsis;
overflow: hidden;
}
.frame-about-section {
display: grid;
grid-template-columns: max-content 1fr;
grid-column-gap: 5px;
margin-left: 15px;
margin-bottom: 10px;
}
.frame-about-link {
color: #0000c8;
text-decoration: underline;
cursor: pointer;
}
.frame-about-link:hover {
text-decoration: none;
}
.frame-about-link:active {
opacity: .5;
}
|