mirror of
https://github.com/bubblecup-12/VogelSocialMedia.git
synced 2025-07-14 00:30:33 +00:00
basic post creation page UI for Desktop done
This commit is contained in:
parent
206932ff8c
commit
0bffcbaaa7
8 changed files with 796 additions and 274 deletions
|
@ -10,6 +10,8 @@
|
|||
}
|
||||
.create-part{
|
||||
display: flex;
|
||||
height: 100vh;
|
||||
width: 70vw;
|
||||
padding: 29px 40px;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
|
@ -17,4 +19,46 @@
|
|||
border-right: 4px solid var(--Rotkehlchen-gray-hover, #D5D7DA);
|
||||
border-left: 4px solid var(--Rotkehlchen-gray-hover, #D5D7DA);
|
||||
background: #FFF;
|
||||
}
|
||||
.create-account{
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
}
|
||||
.create-post1{
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
width:70vw;
|
||||
gap: 10px;
|
||||
}
|
||||
.create-post-description{
|
||||
width: 100%;
|
||||
}
|
||||
.create-post2{
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
width: 70vw;
|
||||
gap: 10px;
|
||||
align-items: center;
|
||||
}
|
||||
.create-tags{
|
||||
width: 100%;
|
||||
}
|
||||
.create-post-image{
|
||||
width: 50vw;
|
||||
max-width: 50vw;
|
||||
height: 50vh;
|
||||
object-fit: cover;
|
||||
overflow: hidden;
|
||||
|
||||
}
|
||||
input#create-file-upload[type="file"] {
|
||||
display: none;
|
||||
}
|
||||
.create-file-upload {
|
||||
border: 1px solid #ccc;
|
||||
padding: 6px 12px;
|
||||
cursor: pointer;
|
||||
width: 300px;
|
||||
height: 100px;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue