Created
November 18, 2022 19:23
-
-
Save dwolrdcojp/73bda8bfe594b3baf1241e8229d97b49 to your computer and use it in GitHub Desktop.
Next 13 - Blog App CSS
This file contains 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
.heading2Xl { | |
font-size: 2.5rem; | |
line-height: 1.2; | |
font-weight: 800; | |
letter-spacing: -0.05rem; | |
margin: 1rem 0; | |
} | |
.headingXl { | |
font-size: 2rem; | |
line-height: 1.3; | |
font-weight: 800; | |
letter-spacing: -0.05rem; | |
margin: 1rem 0; | |
} | |
.headingLg { | |
font-size: 1.5rem; | |
line-height: 1.4; | |
margin: 1rem 0; | |
} | |
.headingMd { | |
font-size: 1.2rem; | |
line-height: 1.5; | |
} | |
.borderCircle { | |
border-radius: 9999px; | |
} | |
.colorInherit { | |
color: inherit; | |
} | |
.padding1px { | |
padding-top: 1px; | |
} | |
.list { | |
list-style: none; | |
padding: 0; | |
margin: 0; | |
} | |
.listItem { | |
margin: 0 0 1.25rem; | |
} | |
.lightText { | |
color: #666; | |
} | |
.button { | |
background-color: white; | |
border-radius: 4px; | |
width: 125px; | |
color: black; | |
text-align: center; | |
font-size: 16px; | |
padding: 5px 10px; | |
} | |
.posts { | |
height: 500px; | |
} | |
.search { | |
width: 255px; | |
color: black; | |
font-size: 16px; | |
border-radius: 4px; | |
padding: 5px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment