mirror of
				https://github.com/fooflington/selfdefined.git
				synced 2025-10-30 21:58:32 +00:00 
			
		
		
		
	 019d80976d
			
		
	
	019d80976d
	
	
	
		
			
			* Initial Frequently Asked Questions (FAQs) page that is a child to the Documentation page and cross-linked accordingly. Corresponds to issue #246 * Cross-referencing and linking to the new FAQs page (b55ec86) from the Contributing Guidelines docs. Corresponds to issue #246 * Doh! Inadvertently removed the `Get Help` sub-heading under c98290e; this commit adds `Get Help` back * linting - updating unordered bullets to dash instead of asterisk * adding copy and link to joining the Self-Defined app Slack community per feedback from Tatiana * Update 11ty/documentation/index.md Feedback from Tatiana Co-authored-by: Tatiana Mac <github@tatianamac.com> * Update 11ty/documentation/frequently-asked-questions.md Copy feedback from Tatiana Co-authored-by: Tatiana Mac <github@tatianamac.com> * tidying up copy for FAQs page per Tatiana feedback, specifically under `Open PR` * additional copy cleanup and updates per Tatiana PR feedback * converting the FAQ markdown page (b55ec86, 5552abd) to a njk html template since we're utilizing dl, dt & dd markup tags for our FAQ content. Changes include corresponding CSS rules for dl and dt tags and minor punctuation update in the contributing guidelines. Addresses issue #246 Co-authored-by: Manny Becerra <mannybecerra@users.noreply.github.com> Co-authored-by: Tatiana Mac <github@tatianamac.com>
		
			
				
	
	
		
			51 lines
		
	
	
		
			600 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			600 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
| ol, dl {
 | |
|   margin: 0;
 | |
|   padding: 0 0 0 1em;
 | |
| }
 | |
| 
 | |
| li {
 | |
|   list-style: none;
 | |
|   padding-bottom: 0.5em;
 | |
| 
 | |
|   &.subterm {
 | |
|     padding-left: pxToRem(10);
 | |
|   }
 | |
| 
 | |
|   &:last-child {
 | |
|     padding-bottom: 0;
 | |
|   }
 | |
| 
 | |
|   &.subterm:before {
 | |
|     content: '\21B3';
 | |
|     padding-right: pxToRem(5);
 | |
|   }
 | |
| }
 | |
| 
 | |
| dt {
 | |
|   font-weight: $bold;
 | |
| }
 | |
| 
 | |
| .list-semicolon {
 | |
|   list-style: none;
 | |
|   margin: 0;
 | |
|   padding: 0;
 | |
| 
 | |
|   & > li {
 | |
|     display: inline;
 | |
| 
 | |
|     &:not(:last-child)::after {
 | |
|       content: '; ';
 | |
|     }
 | |
|   }
 | |
| }
 | |
| 
 | |
| .list-default {
 | |
|   li {
 | |
|     list-style: initial;
 | |
|     margin-left: 2rem;
 | |
|     &:last-child {
 | |
|       margin-bottom: 0.5rem;
 | |
|     }
 | |
|   }
 | |
| }
 |