22 lines
		
	
	
		
			514 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
		
		
			
		
	
	
			22 lines
		
	
	
		
			514 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| 
								 | 
							
								---
							 | 
						|||
| 
								 | 
							
								title: Store Data with Sass Variables
							 | 
						|||
| 
								 | 
							
								localeTitle: Сохранять данные с помощью переменных Sass
							 | 
						|||
| 
								 | 
							
								---
							 | 
						|||
| 
								 | 
							
								## Сохранять данные с помощью переменных Sass
							 | 
						|||
| 
								 | 
							
								
							 | 
						|||
| 
								 | 
							
								## Решение
							 | 
						|||
| 
								 | 
							
								
							 | 
						|||
| 
								 | 
							
								```javascript
							 | 
						|||
| 
								 | 
							
								<style type='text/sass'> 
							 | 
						|||
| 
								 | 
							
								 
							 | 
						|||
| 
								 | 
							
								  $text-color: red; // Declaration of the variable "text-color". 
							 | 
						|||
| 
								 | 
							
								 
							 | 
						|||
| 
								 | 
							
								  .header{ 
							 | 
						|||
| 
								 | 
							
								    text-align: center; 
							 | 
						|||
| 
								 | 
							
								  } 
							 | 
						|||
| 
								 | 
							
								  .blog-post, h2 { 
							 | 
						|||
| 
								 | 
							
								    color: $text-color; // Changing the value of color with the value of "text-color". 
							 | 
						|||
| 
								 | 
							
								  } 
							 | 
						|||
| 
								 | 
							
								 </style> 
							 | 
						|||
| 
								 | 
							
								
							 | 
						|||
| 
								 | 
							
								```
							 |