88 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
| /* ### TYPOGRAPHY ### */
 | |
| @font-face {
 | |
|     font-family: 'Tajawal';
 | |
|     font-style: normal;
 | |
|     font-weight: 400;
 | |
|     src: url(/Tajawal-Regular.woff2) format('woff2');
 | |
|     font-display: block;
 | |
| }
 | |
| 
 | |
| @font-face {
 | |
|     font-family: 'Baskerville';
 | |
|     font-style: normal;
 | |
|     font-weight: 400;
 | |
|     src: url(/Baskerville-Regular.woff2) format('woff2');
 | |
|     font-display: block;
 | |
| }
 | |
| 
 | |
| :root {
 | |
|     --content-size: 1.25rem;
 | |
|     --content-line-height: 1.3;
 | |
|     --content-color: #1e1e1e;
 | |
|     --content-color-faded: #555;
 | |
|     --accent-color: #8c0606;
 | |
| }
 | |
| 
 | |
| html {
 | |
|     font-family: 'Tajawal', sans-serif;
 | |
|     font-size: var(--content-size);
 | |
|     line-height: var(--content-line-height);
 | |
|     letter-spacing: -0.005em;
 | |
|     color: var(--content-color);
 | |
|     box-sizing: border-box;
 | |
| }
 | |
| 
 | |
| body {
 | |
|     margin: 0;
 | |
|     --content-width: 42rem;
 | |
| }
 | |
| 
 | |
| h1, h2, h3, h4, h5, h6 {
 | |
|     font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Ubuntu, Arial, sans-serif;;
 | |
|     font-weight: 600;
 | |
|     color: #464646;
 | |
| }
 | |
| 
 | |
| h1 {
 | |
|     font-variant:  petite-caps;
 | |
|     margin-top: 0.75rem;
 | |
| }
 | |
| 
 | |
| h1, h2 {
 | |
|     margin-bottom: 0.75rem;
 | |
| }
 | |
| 
 | |
| h3 {
 | |
|     font-size: 1.2rem;
 | |
| }
 | |
| 
 | |
| h4 {
 | |
|     font-size: 1.1rem;
 | |
| }
 | |
| 
 | |
| h3, h4 {
 | |
|     margin-bottom:  0.5rem;
 | |
| }
 | |
| 
 | |
| h5, h6 {
 | |
|     font-size: 1rem;
 | |
|     margin-bottom:  0;
 | |
| }
 | |
| 
 | |
| p {
 | |
|     margin-top: 0;
 | |
|     margin-bottom: 1rem;
 | |
| }
 | |
| 
 | |
| code {
 | |
|   background: #eee;
 | |
|   border-radius: 0.2rem;
 | |
|   font-family: Consolas, monospace;
 | |
|   font-size: 0.8rem;
 | |
|   padding: 0.05rem 0.2rem 0.1rem;
 | |
| }
 | |
| 
 | |
| pre > code {
 | |
|     font-size: 0.8rem;
 | |
| }
 |