66 lines
		
	
	
	
		
			983 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
	
		
			983 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| :root {
 | |
|     font-size: 32px;
 | |
| }
 | |
| 
 | |
| body {
 | |
|     margin: 0;
 | |
|     font-family: Ubuntu, system-ui, sans;
 | |
|     line-height: 1.6;
 | |
| }
 | |
| 
 | |
| * {
 | |
|     box-sizing: border-box;
 | |
| }
 | |
| 
 | |
| h1, h2, h3, h4 {
 | |
|     margin: 0;
 | |
| }
 | |
| 
 | |
| section {
 | |
|     width: 100% ;
 | |
|     height: 100dvh;
 | |
|     overflow: hidden;
 | |
|     display: flex;
 | |
|     flex-direction: column;
 | |
|     padding: 2rem;
 | |
|     position: relative;
 | |
|     counter-increment: pageCounter;
 | |
| 
 | |
|     &::after {
 | |
|         content: counter(pageCounter);
 | |
|         font-size: .6rem;
 | |
|         position: absolute;
 | |
|         bottom: 1rem;
 | |
|         right: 1rem;
 | |
|     }
 | |
| 
 | |
|     .content {
 | |
|         flex: 1;
 | |
|         display: flex;
 | |
|         flex-direction: column;
 | |
|         align-items: center;
 | |
|         justify-content: center;
 | |
| 
 | |
|         h1, h2, h3, h4 {
 | |
|             text-align: center;
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 | |
| div:has(> blockquote) {
 | |
|     width: 80%;
 | |
| 
 | |
|     blockquote {
 | |
|         font-style: italic;
 | |
|         text-indent: 1.5rem;
 | |
|     }
 | |
| 
 | |
|     p {
 | |
|         text-align: end;
 | |
|     }
 | |
| }
 | |
| 
 | |
| pre {
 | |
|     width: 100%;
 | |
|     line-height: 1.2;
 | |
| }
 |