mirror of
				https://gitlab.com/parroquia-san-leandro/cancionero-web.git
				synced 2025-10-30 20:58:39 +01:00 
			
		
		
		
	* Reorganize resource directories (templates, less, static) * Show categories on index * Add favicon
		
			
				
	
	
		
			59 lines
		
	
	
	
		
			1,019 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
	
		
			1,019 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| @import "colors";
 | |
| 
 | |
| h1 {
 | |
|     color: @title;
 | |
|     margin-inline: auto;
 | |
|     width: max-content;
 | |
|     max-width: 100%;
 | |
|     text-align: center;
 | |
|     > a, > a:hover, > a:active, > a:visited {
 | |
|         color: @title;
 | |
|     }
 | |
| }
 | |
| 
 | |
| h2, h3 {
 | |
|     color: @subtitle;
 | |
|     font-weight: lighter;
 | |
| }
 | |
| 
 | |
| footer {
 | |
|     text-align: center;
 | |
| }
 | |
| 
 | |
| body {
 | |
|     font-family: Helvetica, Arial, sans-serif;
 | |
|     color: @text;
 | |
|     max-width: 75em;
 | |
|     margin: 1em;
 | |
|     @media (min-width: 75em + 1em) {
 | |
|         margin: auto;
 | |
|     }
 | |
| }
 | |
| 
 | |
| nav {
 | |
|     margin-inline: auto;
 | |
|     width: max-content;
 | |
|     max-width: 100%;
 | |
|     > ul {
 | |
|         padding-inline-start: 0px;
 | |
|         > li {
 | |
|             display: inline-block;
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 | |
| a {
 | |
|     text-decoration: none;
 | |
|     > span {
 | |
|         color: @text;
 | |
|         padding: 0.5em;
 | |
|         margin: 0.2em;
 | |
|         display: inline-block;
 | |
|         background: @secondary;
 | |
|         border-radius: @border-radius;
 | |
|         &:hover {
 | |
|             background: @secondary-hover;
 | |
|             transition-duration: @transition;
 | |
|         }
 | |
|     }
 | |
| }
 |