error.less 1.03 KB
Newer Older
Luis Gangas committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
/* ------------------------------------------------------------------------------
 *
 *  # Error pages
 *
 *  Styles for error and offline pages
 *
 *  Version: 1.0
 *  Latest update: May 25, 2015
 *
 * ---------------------------------------------------------------------------- */


// Default title
.error-title { 
	color: #fff; 
	font-size: 200px; 
	line-height: 1; 
	margin-top: @line-height-computed;
	margin-bottom: (@line-height-computed * 2); 
	font-weight: 300; 
	text-stroke: 1px transparent; 
	display: block; 
	text-shadow: 0 1px 0 #ccc,
				 0 2px 0 #c9c9c9,
				 0 3px 0 #bbb,
				 0 4px 0 #b9b9b9,
				 0 5px 0 #aaa,
				 0 6px 1px fade(#000, 10%),
				 0 0 5px fade(#000, 10%),
				 0 1px 3px fade(#000, 30%),
				 0 3px 5px fade(#000, 20%),
				 0 5px 10px fade(#000, 25%),
				 0 10px 10px fade(#000, 20%),
				 0 20px 20px fade(#000, 15%);

	@media (max-width: @screen-xs-max) {
		font-size: 130px;
	}
}

// Title in offline page
.offline-title { 
	font-size: 160px; 

	@media (max-width: @screen-xs-max) {
		font-size: 90px; 
	}
}