Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');
- body {
- margin: 0;
- padding: 0;
- background-color: #dfdfdf;
- font-family: 'Roboto Mono', monospace;
- }
- #main {
- display: grid;
- grid-template-columns: 30% auto;
- grid-gap: 1px;
- }
- #details-section {
- height: 100vh;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- background-color: white;
- }
- #posts-section {
- height: 100vh;
- overflow-y: scroll;
- background-color: white;
- }
- .details {
- width: 75%;
- margin: 10%;
- padding: 34px;
- border-radius: 50px;
- background-color: #f7f7f7;
- }
- #create-post {
- margin: 5%;
- padding: 5%;
- border-radius: 50px;
- background-color: #f7f7f7;
- }
- #create-post-textarea {
- height: 127px;
- width: 100%;
- border: none;
- font-size: 18px;
- }
- #create-post-button {
- font-size: 18px;
- }
- .post {
- margin: 5%;
- padding: 2.7%;
- border-radius: 50px;
- background-color: #f7f7f7;
- }
- .post-text {
- font-size: 18px;
- }
- .post-author {
- color: grey;
- font-size: 10px;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement