angelovcom.net

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

_copy.scss (714B)


      1 p {
      2 	-webkit-font-smoothing: antialiased;
      3 	-moz-osx-font-smoothing: grayscale;
      4 }
      5 
      6 dfn,
      7 cite,
      8 em,
      9 i {
     10 	font-style: italic;
     11 }
     12 
     13 blockquote {
     14 
     15 	cite {
     16 		font-size: $font__size-xs;
     17 		font-style: normal;
     18 		@include font-family( $font__heading );
     19 	}
     20 }
     21 
     22 pre {
     23 	font-size: $font__size-sm;
     24 	font-family: $font__pre;
     25 	line-height: $font__line-height-body;
     26 	overflow: auto;
     27 }
     28 
     29 code,
     30 kbd,
     31 tt,
     32 var {
     33 	font-size: $font__size-sm;
     34 	font-family: $font__code;
     35 }
     36 
     37 abbr, acronym {
     38 	border-bottom: 1px dotted #666;
     39 	cursor: help;
     40 }
     41 
     42 mark,
     43 ins {
     44 	background: #fff9c0;
     45 	text-decoration: none;
     46 }
     47 
     48 big {
     49 	font-size: 125%;
     50 }
     51 
     52 a {
     53 	text-decoration: none;
     54 
     55 	&:hover {
     56 		text-decoration: none;
     57 	}
     58 
     59 	&:focus {
     60 		text-decoration: underline;
     61 	}
     62 }