blob: aeb7ff2257be5696d1b54418b1e29c8e75b14093 [file] [log] [blame]
Dixsie Wolmersc652ed12019-07-19 13:03:28 -05001/**
2 * Used for section layout. This should be used for the page container
3 * Mark up
Derick Montague30d7c632019-07-31 22:35:48 -05004 <section class="section">
5 <div class="section-header">
6 <h2 class="section-title">Section Title</h2>
7 ... any element added here will be right aligned
8 </div>
Dixsie Wolmersc652ed12019-07-19 13:03:28 -05009 <div class="section-content">
10 ...
11 </div>
12 <div class="section-content">
13 ...
14 </div>
Derick Montague30d7c632019-07-31 22:35:48 -050015 </section>
Dixsie Wolmersc652ed12019-07-19 13:03:28 -050016 */
17
18.section {
19 margin-bottom: 3rem;
20}
21
Derick Montague30d7c632019-07-31 22:35:48 -050022.section-header {
23 display: flex;
24 justify-content: space-between;
Dixsie Wolmersc652ed12019-07-19 13:03:28 -050025 border-bottom: 1px solid $border-color-01;
26 padding-bottom: 0.5rem;
27 margin-bottom: 1.5rem;
28}
29
Derick Montague30d7c632019-07-31 22:35:48 -050030.section-title {
31 margin-bottom: 0;
32}
33
Dixsie Wolmersc652ed12019-07-19 13:03:28 -050034.section-content {
Dixsie Wolmersc652ed12019-07-19 13:03:28 -050035 margin-top: 0;
Derick Montague30d7c632019-07-31 22:35:48 -050036 margin-bottom: 0;
37
38 + .section-content {
39 margin-top: 1.5rem;
40 }
Dixsie Wolmersc652ed12019-07-19 13:03:28 -050041}