Created
September 27, 2022 10:20
-
-
Save crofty/faa68b817ec27b39b8989ee77ad44efd to your computer and use it in GitHub Desktop.
bettermotherfuckingwebsite css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Originally from http://bettermotherfuckingwebsite.com */ | |
@import url('https://fonts.googleapis.com/css?family=Inconsolata|Inter&display=swap'); | |
body { | |
margin: 40px auto; | |
max-width: 900px; | |
line-height: 1.6; | |
font-size: 16px; | |
color: #444; | |
padding: 0 10px; | |
font-family: 'Inter', sans-serif;; | |
} | |
h1, | |
h2, | |
h3 { | |
line-height: 1.2; | |
font-family: 'Inter', sans-serif;; | |
} | |
img { | |
width: 750px; | |
border-radius: 10px; | |
} | |
pre { | |
font-family: 'Inconsolata', monospace; | |
} | |
::selection { | |
color: white; | |
background: #ff4081; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment