Subversion Repositories wimsdev

Rev

Rev 12357 | Rev 14829 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. /***********************************************/
  2. /********** Base Typography ********************/
  3. /***********************************************/
  4.  
  5. /*
  6. Typography in Foundation 6 is meant to make your life easier by providing clean,
  7.  attractive, simple default styles for all of the most basic typographical elements.
  8. */
  9.  
  10. /* Citation Blockquotes */
  11. blockquote, blockquote p {
  12.   line-height: 1.6;
  13.   color: #666;
  14. }
  15. blockquote {
  16.   font-family: "Times New Roman", Georgia, Serif;
  17.   font-size: 1rem;
  18.   margin: .5rem 0 1rem;
  19.   padding: .5625rem 1.25rem;
  20.   border-left: 3px solid #cacaca;
  21. }
  22.  
  23. /* author of a blockquote */
  24. cite {
  25.   display: block;
  26.   font-size: 0.8125rem;
  27.   color: #8a8a8a;
  28. }
  29.  
  30. /* abbreviations */
  31.  
  32. abbr, abbr[title] {
  33.     border-bottom: 1px dotted #0a0a0a;
  34.     cursor: help;
  35.     text-decoration: none;
  36. }
  37.  
  38.  
  39. /* Links
  40.        ========================================================================== */
  41. /**
  42.      * 1. Remove the gray background on active links in IE 10.
  43.      * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
  44.      */
  45. a {
  46.   background-color: transparent;
  47.   /* 1 */
  48.   -webkit-text-decoration-skip: objects;
  49.   /* 2 */ }
  50.  
  51. /**
  52.      * Remove the outline on focused links when they are also active or hovered
  53.      * in all browsers (opinionated).
  54.      */
  55. a:active,
  56. a:hover {
  57.   outline-width: 0; }
  58.  
  59. a {
  60.   line-height: inherit;
  61.   text-decoration: none;
  62.   cursor: pointer; }
  63.   a img {border: 0; }