comparison core/modules/system/css/components/align.module.css @ 0:c75dbcec494b

Initial commit from drush-created site
author Chris Cannam
date Thu, 05 Jul 2018 14:24:15 +0000
parents
children 12f9dff5fda9
comparison
equal deleted inserted replaced
-1:000000000000 0:c75dbcec494b
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 }