salesite

Unnamed repository; edit this file 'description' to name the repository.
git clone git://git.alexwennerberg.com/salesite
Log | Files | Refs | README

style.css (550B) - raw


      1 body {
      2   font-size:18px;
      3   font-family: "Roboto", Helvetica, Arial, Sans-serif;
      4   word-wrap: break-word;
      5 }
      6 
      7 a, a:visited {
      8   color: black;
      9   background: linear-gradient(90deg, hotpink, orange);
     10 }
     11 
     12 h1 {
     13   font-size: 5ch;
     14 }
     15 
     16 img {
     17   max-width: 100%;
     18 }
     19 
     20 h1, h2, h3, h4, h5, h6{
     21     margin-top:0;
     22     margin-bottom:0;
     23     font-family: monospace;
     24     color: #52f;
     25     line-height: 1;
     26 }
     27 a {
     28   font-weight: bold;
     29   text-decoration: underline;
     30 }
     31 
     32 a:hover {
     33   background: linear-gradient(90deg, purple, black);
     34   transition-duration: 150ms;
     35   color: white
     36 }