-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathstyle.css
More file actions
93 lines (77 loc) · 1.67 KB
/
style.css
File metadata and controls
93 lines (77 loc) · 1.67 KB
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
/* Theme tweaks */
div.card:is(.dark *),
a.card:is(.dark *) {
background: #09162d;
}
div.card:is(.light *),
a.card:is(.light *) {
background: #fafafa;
}
/* Pages with wrench icon are considered "under construction" and made unclickable */
a:has(svg[style*="wrench.svg"]) {
pointer-events: none;
opacity: 0.7;
}
button:has(svg[style*="wrench.svg"]) {
opacity: 0.7;
}
a:has(svg[style*="wrench.svg"]) > div:first-child,
button:has(svg[style*="wrench.svg"]) > svg[style*="wrench.svg"] {
order: 2;
margin-left: auto;
}
/* Shortcodes / Snippets */
/* <Term/> */
.prose a.glossary-term:is(.dark *, .light *) {
color: inherit;
font-weight: inherit;
border-bottom: 2px dotted #325495;
}
/* <Schema/> */
.prose a.schema-object:is(.dark *, .light *) {
color: inherit;
font-weight: inherit;
border-bottom: 2px dotted #2c802c;
}
/* Welcome page */
h4.project-title:is(.dark *, .light *) {
display: block;
text-align: center;
}
h4.project-title a {
border-bottom: 0;
}
a.project-quicklink:is(.dark *, .light *) {
font-size: 15px;
font-weight: 300;
color: #ec6e2a;
border-bottom: 0;
}
/* Welcome page project icons have special treatment */
.prose div img:is(
[src*="projects/odf.svg"],
[src*="projects/kamu-cli.svg"],
[src*="projects/kamu-node.svg"],
[src*="projects/kamu-platform.svg"]
) {
display: block;
margin: 30px auto 0 auto;
height: 100px;
width: auto;
}
/* CI badges */
div.badges {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
margin: 20px;
}
div.badges img {
display: inline;
margin: 0;
}
div.badges a {
border-bottom: 0;
}