Last active
June 23, 2020 15:59
-
-
Save orangelemon-ish/42dafad4f14b75803ce7d134f63c7c4c to your computer and use it in GitHub Desktop.
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
@import url('https://fonts.googleapis.com/css?family=Patrick Hand'); | |
.header>.header-col-1 { | |
display: flex; | |
flex-direction: column; | |
justify-content: center; | |
align-items: center; | |
margin-bottom: 16px; | |
} | |
.header-col-2{ | |
width: 100%; | |
max-width: 266px; | |
align-self: center; | |
justify-content: center; | |
} | |
.header>.header-col-1>.header-title-avatar { | |
margin-bottom: 16px; | |
} | |
.header>.header-col-1 .header-title-name { | |
font-size: 36px; | |
margin-bottom: 8px; | |
} | |
.header>.header-col-1 .header-content { | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
} | |
.post-text{ | |
font-family: "Patrick Hand"; | |
font-size: 16px; | |
} | |
body { | |
background-image: linear-gradient(to bottom right, #FFD8D0, #FFEED0, #FFFDD0, #D9FFD0, #D0E9FF, #EDD0FF); | |
} | |
.posts{ | |
border-radius: 0px; | |
gap: 16px; | |
background: none; | |
padding: 8px; | |
} | |
.post{ | |
border-radius: 12px; | |
box-shadow: 2px 1px 4px 1px #2E0037; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment