-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathextra.css
More file actions
131 lines (111 loc) · 2.71 KB
/
extra.css
File metadata and controls
131 lines (111 loc) · 2.71 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/* Text justification */
.justify, p {
text-align: justify;
text-justify: inter-word;
}
/* Patch for code highlighting */
.rst-content code,
.rst-content .admonition code,
.inline code {
background: transparent;
color: black;
display: inline;
overflow-wrap: break-word;
}
pre code.hljs {
background: #2e3440;
color: #d8dee9;
}
/* Wrap with a capsule */
.capsule {
margin-bottom: 10px;
padding: 5px 20px 5px 20px;
border: thin solid;
-webkit-border-radius: 5px;
border-radius: 5px;
}
/* Appimages summary table */
.appimages-summary-table {
border-collapse: collapse;
caption-side: bottom;
margin-left: auto;
margin-right: auto;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.appimages-summary-table caption {
font-size: 1.2em;
font-style: italic;
padding: 12px 15px;
}
.appimages-summary-table th,
.appimages-summary-table td {
font-weight: normal;
padding: 12px 15px;
text-align: center;
vertical-align: middle;
}
.appimages-summary-table thead tr,
.appimages-summary-table tbody td:first-child {
background-color: #2e3440;
color: #d8dee9;
text-align: left;
vertical-align: middle;
}
.appimages-summary-table tbody tr {
border-bottom: 1px solid #dddddd;
}
.appimages-summary-table tbody tr:nth-of-type(even) {
background-color: #f3f3f3;
}
.appimages-summary-table tbody tr:last-of-type {
border-bottom: 2px solid #2e3440;
}
.appimages-summary-table-inner,
.appimages-summary-table-inner tbody,
.appimages-summary-table-inner tbody tr,
.appimages-summary-table-inner tbody tr:last-of-type {
border: none;
}
.appimages-summary-table-inner td
{
padding: 3px 4px;
}
.appimages-summary-table-inner tbody tr:nth-of-type(even),
.appimages-summary-table-inner tbody td:first-child {
background-color: transparent;
border: none !important;
text-align: center;
vertical-align: middle;
}
/* Resized badge */
.smaller-appimage-badge img {
height: 18px;
width: auto;
}
/* Reshape tables */
.rst-content .section .docutils {
border-collapse: collapse;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
caption-side: bottom;
display: table;
margin-left: auto;
margin-right: auto;
}
.rst-content table.docutils thead {
background-color: #2e3440;
color: #d8dee9;
text-align: left;
vertical-align: middle;
}
.rst-content table.docutils tbody tr {
border-bottom: 1px solid #dddddd;
}
.rst-content table.docutils:not(.field-list) tr:nth-child(2n-1) td {
background-color: white;
}
.rst-content table.docutils tbody tr:nth-of-type(even) {
background-color: #f3f3f3;
}
.rst-content table.docutils tbody tr:last-of-type {
border-bottom: 2px solid #2e3440;
}