This repository has been archived by the owner on Sep 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
102 lines (86 loc) · 1.7 KB
/
main.css
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
98
99
100
101
102
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
position: relative;
}
body.contentspage h1 {
all: unset;
text-align: center;
font-weight: bolder;
font-size: xx-large;
width: 100%;
}
dt, dd {
margin: 0;
padding: 0;
}
body.contentspage {
margin: 2%;
}
.superindex {
/*
margin-left: 10%;
c: good margin if dt > a props are set */
margin-left: 5%;
}
dt > a {
/*
position: absolute;
left: calc(2% + 1rem);
font-weight: bolder;
c: shows subHeadings */
visibility: hidden;
}
dd {
display: grid;
grid-template-columns: repeat(4, max-content);
gap: 1rem;
padding: 0 0 2rem 0;
}
dd > a {
}
.meta-koha-search {
all: unset;
width: 100%;
margin: 1rem 0;
padding: 6px;
font-size: xx-large;
line-height: 1rem;
border-color: transparent;
border-bottom: 2px solid darkslategray;
border-radius: 4px;
background-color: whitesmoke;
}
.d-none {
display: none !important;
}
.meta-koha-nav {
display: flex;
overflow-x: scroll;
}
.meta-koha-nav-entry {
padding: 3px;
margin: 2px;
margin-bottom: 1em;
border: 1px inset black;
border-radius: 6px;
white-space: nowrap;
cursor: pointer;
}
.meta-koha-nav-entry:hover,
.meta-koha-nav-back-to-top:hover {
border: 1px outset crimson;
background: crimson;
color: white;
}
.meta-koha-nav-back-to-top {
font-weight: bolder;
background: white;
border: 1px inset darkslategray;
border-radius: 6px;
padding: 5px;
margin: 2px;
position: fixed;
bottom: 1em;
right: 1em;
cursor: pointer;
}