forked from pders01/koha-perldoc-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
105 lines (90 loc) · 1.74 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
103
104
105
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: 5%;
}
dt > a {
visibility: hidden;
}
dd {
display: grid;
grid-template-columns: repeat(4, max-content);
gap: 1rem;
padding: 0 0 2rem 0;
}
dd > a {
font-size: smaller;
}
.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 #333;
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: 2px solid rgba(0, 0, 0, 0.1);
border-radius: 6px;
white-space: nowrap;
cursor: pointer;
transition: all 0.2s ease-in-out;
}
.meta-koha-nav-entry:hover,
.meta-koha-nav-back-to-top:hover {
border: 2px solid #cc0000;
background: #cc0000;
color: white;
}
.meta-koha-nav-back-to-top {
font-weight: bolder;
background: white;
border: 2px solid rgba(0, 0, 0, 0.1);
border-radius: 6px;
padding: 5px;
margin: 2px;
position: fixed;
bottom: 1em;
right: 1em;
cursor: pointer;
transition: all 0.2s ease-in-out;
}
/* Style the <span> elements that wrap the search query */
span {
/* Set the font weight to bold */
font-weight: bold;
/* Set the color to a color that stands out from the rest of the text */
color: crimson;
}