Skip to content

Instantly share code, notes, and snippets.

@MoranggNormal
Created June 26, 2021 03:21
Show Gist options
  • Save MoranggNormal/048c91d914a59ce2c73b5088deac7448 to your computer and use it in GitHub Desktop.
Save MoranggNormal/048c91d914a59ce2c73b5088deac7448 to your computer and use it in GitHub Desktop.
#page-room{
header{
padding: 24px;
border-bottom: 1px solid #e2e2e2;
}
.content{
max-width: 1120px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
>img{
max-height: 45px;
}
}
}
main{
max-width: 800px;
margin: 0 auto;
.room-title{
margin: 32px 0 24;
display: flex;
align-items: center;
h1{
font-family: 'Poppins', sans-serif;
font-size: 24px;
color: #29292e;
}
span{
margin-left: 16px;
background: #e559f9;
border-radius: 9999px;
padding: 8px 16px;
color: #fff;
font-weight: 500;
font-size: 14px;
cursor: default;
}
}
form{
textarea{
margin-top: 32px;
width: 100%;
border: 0;
padding: 16px;
border-radius: 8px;
background: #fefefe;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
resize: vertical;
min-height: 130px;
}
.form-footer{
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 16px;
.user-info{
display: flex;
align-items: center;
img{
width: 32px;
height: 32px;
border-radius: 50%;
}
span{
margin-left: 8px;
color: #29292e;
font-weight: 500;
font-size: 14px;
}
}
> span{
font-size: 14px;
color: #737380;
font-weight: 500;
button{
background: transparent;
border: 0;
color: #835afd;
text-decoration: underline;
font-size: 14px;
font-weight: 500;
cursor: pointer;
}
}
}
}
}
.question-list{
margin-top: 32px;
}
@jardelbordignon
Copy link

header {
padding: 24px;
border-bottom: 1px solid #e2e2e2;

.content {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;

  > img {
    max-height: 45px;
  }

  > div {
    display: flex;
    gap: 16px;

    button {
      height: 40px;
    }
  }
}

}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment