-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathcustom.css
More file actions
117 lines (97 loc) · 2.44 KB
/
custom.css
File metadata and controls
117 lines (97 loc) · 2.44 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
.section p, .section a {
text-align: justify;
overflow-wrap: break-word;
word-wrap: break-word;
-webkit-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
hyphenate-limit-chars: 6 3 3;
hyphenate-limit-lines: 2;
hyphenate-limit-last: always;
hyphenate-limit-zone: 8%;
}
/* Fix to display tables properly */
.wy-table-responsive table td, .wy-table-responsive table th {
white-space: normal;
}
/* For the formatted table in the AppImage creation tools page */
.formatted-table tr:nth-child(1) td {
background-color: #006400 !important;
color: #000000 !important;
}
.formatted-table tr:nth-child(2) td {
background-color: #006400 !important;
color: #000000 !important;
}
.formatted-table tr:nth-child(3) td {
background-color: #FFFF00 !important;
color: #000000 !important;
}
.formatted-table tr:nth-child(4) td {
background-color: #FFFF00 !important;
color: #000000 !important;
}
.formatted-table tr:nth-child(5) td {
background-color: #FF8000 !important;
color: #000000 !important;
}
.formatted-table tr:nth-child(6) td {
background-color: #FF8000 !important;
color: #000000 !important;
}
.formatted-table tr:nth-child(7) td {
background-color: #FF0000 !important;
color: #000000 !important;
}
/* To allow bold hyperlinks and substitutions */
.bold-link a {
font-weight: bold;
}
.bold {
font-weight: bold;
}
/* For additional information in the AppStream generator */
.tooltip {
position: relative;
display: inline-block;
cursor: pointer;
vertical-align: super;
font-size: smaller;
text-decoration: underline;
color: #007bff;
}
.tooltip .tooltip-text {
visibility: hidden;
width: 200px;
background-color: #555;
color: #fff;
text-align: center;
border-radius: 5px;
padding: 5px;
position: absolute;
z-index: 1;
bottom: 125%; /* Position above the element */
left: 50%;
transform: translateX(-50%);
opacity: 0;
transition: opacity 0.3s;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.tooltip:hover .tooltip-text {
visibility: visible;
opacity: 1;
}
.tooltip .tooltip-text::after {
content: '';
position: absolute;
top: 100%; /* Arrow points downward */
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #555 transparent transparent transparent;
}
/* For the AppStream generator */
.full-width {
width: 100%;
}