angelovcom.net

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

_elements.scss (1039B)


      1 html {
      2 	box-sizing: border-box;
      3 }
      4 
      5 ::-moz-selection {
      6 	background-color: $color__background_selection;
      7 }
      8 
      9 ::selection {
     10 	background-color: $color__background_selection;
     11 }
     12 
     13 *,
     14 *:before,
     15 *:after {
     16 	box-sizing: inherit;
     17 }
     18 
     19 body {
     20 	background-color: $color__background-body;
     21 }
     22 
     23 a {
     24 	@include link-transition;
     25 	color: $color__link;
     26 }
     27 
     28 a:visited {
     29 
     30 }
     31 
     32 a:hover,
     33 a:active {
     34 	color: $color__link-hover;
     35 	outline: 0;
     36 	text-decoration: none;
     37 }
     38 
     39 a:focus {
     40 	outline: thin;
     41 	outline-style: dotted;
     42 	text-decoration: underline;
     43 }
     44 
     45 h1,
     46 h2,
     47 h3,
     48 h4,
     49 h5,
     50 h6 {
     51 	clear: both;
     52 	margin: $size__spacing-unit 0;
     53 }
     54 
     55 h1:not(.site-title),
     56 h2 {
     57 	@include post-section-dash;
     58 }
     59 
     60 hr {
     61 	background-color: $color__text-light;
     62 	border: 0;
     63 	height: 2px;
     64 }
     65 
     66 @import "lists";
     67 
     68 img {
     69 	height: auto;
     70 	max-width: 100%;
     71 	position: relative;
     72 }
     73 
     74 figure {
     75 	margin: 0;
     76 }
     77 
     78 blockquote {
     79 	border-left: 2px solid $color__link;
     80 	margin-left: 0;
     81 	padding: 0 0 0 $size__spacing-unit;
     82 
     83 	> p {
     84 		margin: 0 0 $size__spacing-unit;
     85 	}
     86 
     87 	cite {
     88 		color: $color__text-light;
     89 	}
     90 }
     91 
     92 @import "tables";