CSS file for a video skit maker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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