Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- .chat-container {
- background-color: #fff;
- display: flex;
- max-width: 480px;
- width: 100%;
- flex-direction: column;
- color: #000;
- font-weight: 500;
- justify-content: center;
- margin: 0 auto;
- }
- .chat-header {
- background-color: #fff;
- display: flex;
- width: 100%;
- padding-top: 15px;
- flex-direction: column;
- align-items: center;
- }
- .chat-timestamp {
- display: flex;
- width: 100%;
- max-width: 352px;
- align-items: start;
- gap: 20px;
- font-weight: 600;
- white-space: nowrap;
- text-align: center;
- justify-content: space-between;
- }
- .text-time {
- display: flex;
- flex-direction: column;
- font-size: 15px;
- letter-spacing: -0.33px;
- padding: 0 20px;
- }
- .time {
- font-family: SF Pro Text, sans-serif;
- }
- .clock-icon {
- aspect-ratio: 0.57;
- object-fit: auto;
- object-position: center;
- width: 12px;
- fill: #000;
- margin-top: 28px;
- }
- .profile-info {
- display: flex;
- flex-direction: column;
- font-size: 17px;
- letter-spacing: -0.41px;
- line-height: 129%;
- padding: 0 20px;
- }
- .profile-picture {
- aspect-ratio: 4.17;
- object-fit: auto;
- object-position: center;
- width: 68px;
- align-self: end;
- }
- .profile-name {
- font-family: SF Pro Text, sans-serif;
- margin-top: 29px;
- }
- .message-section {
- display: flex;
- margin-top: 43px;
- width: 100%;
- max-width: 343px;
- gap: 16px;
- font-size: 13px;
- font-weight: 400;
- line-height: 18px;
- }
- .avatar {
- aspect-ratio: 1;
- object-fit: auto;
- object-position: center;
- width: 28px;
- border-radius: 50%;
- align-self: start;
- }
- .message-text {
- font-family: Roboto, sans-serif;
- border-radius: 0 6px 6px 6px;
- background-color: rgba(0, 0, 0, 0.03);
- justify-content: center;
- flex-grow: 1;
- width: fit-content;
- padding: 18px 16px;
- }
- .reply-section {
- display: flex;
- margin-top: 24px;
- width: 100%;
- max-width: 343px;
- gap: 16px;
- font-size: 13px;
- color: #8e1de8;
- line-height: 18px;
- }
- .reply-text {
- font-family: Roboto, sans-serif;
- border-radius: 6px 0 6px 6px;
- background-color: rgba(0, 0, 0, 0.03);
- justify-content: center;
- flex-grow: 1;
- width: fit-content;
- padding: 18px 16px;
- }
- .reply-avatar {
- aspect-ratio: 1;
- object-fit: auto;
- object-position: center;
- width: 28px;
- border-radius: 50%;
- align-self: start;
- }
- .thank-you-section {
- display: flex;
- margin-top: 24px;
- width: 100%;
- max-width: 343px;
- gap: 16px;
- font-size: 13px;
- color: #d82e57;
- line-height: 138%;
- }
- .thank-you-avatar {
- aspect-ratio: 1;
- object-fit: auto;
- object-position: center;
- width: 28px;
- border-radius: 50%;
- align-self: start;
- }
- .thank-you-text {
- font-family: Roboto, sans-serif;
- font-style: italic;
- border-radius: 0 6px 6px 6px;
- background-color: rgba(0, 0, 0, 0.03);
- align-items: start;
- justify-content: center;
- flex-grow: 1;
- width: fit-content;
- padding: 19px 16px;
- }
- .large-image {
- aspect-ratio: 4.55;
- object-fit: auto;
- object-position: center;
- width: 100%;
- align-self: stretch;
- margin-top: 343px;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement