Skip to content

Instantly share code, notes, and snippets.

@Chuloo
Last active August 4, 2021 17:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Chuloo/33434d6ed74109bb032313c33652efff to your computer and use it in GitHub Desktop.
Save Chuloo/33434d6ed74109bb032313c33652efff to your computer and use it in GitHub Desktop.
CSS file for a video skit maker
.App {
text-align: center;
max-width: 100vw;
min-height: 100vh;
max-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.App .left-side {
display: flex;
justify-content: center;
align-items: center;
border-right: 0.5px solid grey;
}
.App .right-side {
border-left: 0.5px solid grey;
}
.App .left-side,
.App .right-side {
height: 350px;
width: 100%;
}
.App .left-side form {
height: fit-content;
background: white;
border: 1px solid grey;
border-radius: 5px;
width: 500px;
padding: 10px 5px;
}
.App .left-side form input {
margin: 10 0 20px;
width: 30px;
}
#text {
margin: 10 0 10px;
width: 100px;
}
.label:after {
content: ": ";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment