[READ-ONLY] Mirror of https://github.com/probablykasper/website-template. My PHP website template
0

Configure Feed

Select the types of activity you want to include in your feed.

website-template / css / global.sass
898 B 49 lines
1@import "variables.sass" 2// defaults 3html 4 body 5 background-color: white 6 margin: 0px 7 font-family: 'Roboto', Arial, sans-serif 8 color: $c-text 9 p, h1, h2, h3, h4, h5, h6 10 margin: 0px 11 font-weight: normal 12 .metadata 13 display: none 14 h1 15 font-size: 50px 16 h2 17 font-size: 35px 18 h3 19 font-size: 30px 20 h4 21 font-size: 25px 22 h5 23 font-size: 20px 24 a, a:link, a:visited, a:link:active, a:visited:active 25 text-decoration: none 26 outline: none 27 color: white 28 img 29 display: block 30 input:focus, button:focus, textarea:focus, div, p 31 outline: none 32 input, textarea, button 33 font-family: 'Roboto', Arial, sans-serif 34 border: none 35 font-size: 16px 36 input[type="range"] 37 display: none 38 .flex-row 39 display: flex 40 justify-content: center 41 flex-direction: row 42 width: 100% 43 .flex-col 44 display: flex 45 justify-content: center 46 flex-direction: column 47 height: 100% 48 .invisible 49 visibility: none