This commit is contained in:
j.mei7
2022-04-02 21:58:00 +02:00
parent a2cb926371
commit 3deabbe306
27 changed files with 30250 additions and 0 deletions

View File

@@ -0,0 +1,65 @@
.ideaContent{
min-height: 100%;
height: 100%;
width: 100%;
display: block;
.head{
padding-top: 20px;
padding-bottom: 20px;
margin-bottom: 20px;
border-bottom: 2px solid rgba(87, 87, 87, 0.3);
width: 100%;
display: block;
input{
background-color: transparent;
border: 0px;
border-bottom: 2px solid rgba(87, 87, 87, 0.5);
font-size: 24pt;
color: white;
outline:none;
margin-left: 50px;
font-weight: bold;
width: 60%;
transition: 100ms;
transition-timing-function: linear;
&::placeholder{
color: rgba(255, 255, 255, 0.44);
font-weight: bold;
}
&:hover{
border-color: rgb(80, 209, 160);
}
&:focus{
border-color: rgb(80, 209, 160);
}
}
}
.textAreaContainer{
width: 100%;
height: 700px;
display: block;
textarea{
outline: 0;
display: block;
width: calc(100% - 40px);
height: 100%;
background-color: rgba(71, 71, 71, 0.171);
border: 0px solid transparent;
resize: none;
box-shadow: 4px 0px 7px 2px rgba(61, 61, 61, 0.3);
font-size: 13pt;
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
font-family: 'Roboto', sans-serif;
}
}
}