comparison core/themes/stable/css/system/components/align.module.css @ 0:4c8ae668cc8c

Initial import (non-working)
author Chris Cannam
date Wed, 29 Nov 2017 16:09:58 +0000
parents
children af1871eacc83
comparison
equal deleted inserted replaced
-1:000000000000 0:4c8ae668cc8c
1 /**
2 * @file
3 * Alignment classes for text and block level elements.
4 */
5
6 .text-align-left {
7 text-align: left;
8 }
9 .text-align-right {
10 text-align: right;
11 }
12 .text-align-center {
13 text-align: center;
14 }
15 .text-align-justify {
16 text-align: justify;
17 }
18
19 /**
20 * Alignment classes for block level elements (images, videos, blockquotes, etc.)
21 */
22 .align-left {
23 float: left;
24 }
25 .align-right {
26 float: right;
27 }
28 .align-center {
29 display: block;
30 margin-left: auto;
31 margin-right: auto;
32 }