Přidán formulář k přídávání videí

This commit is contained in:
2021-01-31 18:03:48 +01:00
parent a0406b44da
commit a9ac73a8e8
5 changed files with 151 additions and 34 deletions

View File

@@ -7,6 +7,10 @@ html {
height: 100%;
}
* {
box-sizing: border-box;
}
body {
font-family: RobotoSlab;
color: #707070;
@@ -23,6 +27,7 @@ body {
}
aside {
position: relative;
grid-area: comments;
background-color: #ededed;
display: flex;
@@ -301,3 +306,67 @@ progress::-webkit-progress-bar {
height: 100%;
z-index: 15;
}
#about {
position: absolute;
bottom: 0;
padding: 3vh 2vw 3vh 1.5vw;
}
#about h1 {
margin-bottom: 0.2em;
}
#about div {
display: flex;
margin-top: 0.5em;
gap: 1em;
}
a {
color: #282828;
text-decoration: none;
}
form {
width: 100%;
height: 100%;
display: grid;
align-items: center;
justify-items: center;
}
form input {
}
#textInput {
height: 100%;
display: flex;
flex-direction: column;
align-items: stretch;
justify-content: space-between;
gap: 1em;
}
#textInput textarea {
width: 100%;
height: 100%;
resize: none;
padding: 0;
margin: 0;
}
#textInput input {
width: 100%;
height: 2.5em;
appearance: none;
background-color: #ffa800;
color: white;
border: none;
font-weight: bold;
padding: 0;
margin: 0;
cursor: pointer;
}
#textInput input:hover {
background-color: #ff9100;
}