blob: 2d55724907b4f566c90fa5cd89463099e8d84740 (
plain)
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
|
/* ikiwiki local style sheet */
/* Add local styling here, instead of modifying bootstrap.min.css. */
/* Add this class to a bootstrap table to not make it take 100% of the width */
.table-nonfluid {
width: auto;
}
.urlwordbreakall {
word-break: break-all;
}
/*
.half-width-img have to table cols at 50% each and fit image in col
*/
table.half-width-img th {
width: 50%;
}
/*
.img-fill-container scale an image to fit container in x axis
*/
table.half-width-img img,
.img-fill-container {
width: 100%;
height: auto;
}
|