source: gs3-installations/thewillow/trunk/sites/thewillow/dlcol-chatgpt/iframe-page/dl-chatgpt_files/align.module.css@ 38779

Last change on this file since 38779 was 38779, checked in by davidb, 3 months ago

Files that need to be moved to <gsdl3srchome>/web to provide a static web page example using an iframe to embedd the React/NextJS based chatbot

File size: 484 bytes
Line 
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-right: auto;
31 margin-left: auto;
32}
Note: See TracBrowser for help on using the repository browser.