-
Notifications
You must be signed in to change notification settings - Fork 1
/
ucp.css
30 lines (28 loc) · 956 Bytes
/
ucp.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
/* useful css class-room phrases is a small selection for css classes used inside content areas */
/* more on https://github.com/klml/usefulclassroomphrases */
.clear,
.cb { clear:both; }
.cl { clear:left; }
.cr { clear:right; }
.left { float:left;}
.right { float:right;}
.none { float: none !important;}
.marginleft,
img[src$='#left'], /* use blind hash as workaround if class can't set, eg markdown etc */
img.left { float:left;margin:0 5px 5px 0;}
.marginright,
img[src$='#right'],
img.right { float:right;margin:0 0 5px 5px;}
.block { display: block;}
.hidden { display: none; }
/* 2-column for key value lists .row2 is above if you use not changable sections like markdown-lists */
.row2 dl dt {font-weight: bold;}
@media only print, only screen and (min-width: 680px) {
.row2 dl dt {clear: both; float: left; width: 25%;}
.row2 dl dd {float: right; width: 75%; margin-left: 0}
}
@media print {
.noprint {
display:none;
}
}