67 lines
1.3 KiB
CSS
67 lines
1.3 KiB
CSS
|
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,200&family=Source+Code+Pro:wght@300&display=swap');
|
||
|
|
||
|
body {
|
||
|
background-image: linear-gradient(120deg, #fccb90 0%, #d57eeb 100%);
|
||
|
}
|
||
|
|
||
|
.form_border {
|
||
|
border: 1px solid rgb(92, 92, 92);
|
||
|
border-radius: 7px;
|
||
|
background-color: rgb(160, 161, 182);
|
||
|
width: 350px;
|
||
|
text-align: center;
|
||
|
height: 400px;
|
||
|
justify-content: space-around;
|
||
|
line-height: 200%;
|
||
|
font-family: 'DM Sans', sans-serif;
|
||
|
font-size: larger;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.form_border > input {
|
||
|
width: 95%;
|
||
|
font-family: 'Source Code Pro', monospace;
|
||
|
outline: none;
|
||
|
font-size: larger;
|
||
|
border-radius: 5px;
|
||
|
}
|
||
|
|
||
|
.form_border > input:focus {
|
||
|
background-color: rgb(235, 235, 235);
|
||
|
outline: none;
|
||
|
}
|
||
|
|
||
|
.form_border > label {
|
||
|
width: 97%;
|
||
|
display: inline-block;
|
||
|
line-height: 200%;
|
||
|
text-align: left;
|
||
|
}
|
||
|
|
||
|
.form_border > button {
|
||
|
font-family: 'DM Sans', sans-serif;
|
||
|
font-size: larger;
|
||
|
position: absolute;
|
||
|
bottom: 10px;
|
||
|
/*left: 117px;*/
|
||
|
left: 0;
|
||
|
background-color: rgba(255, 190, 78, 0.7);
|
||
|
height: 12%;
|
||
|
font-weight: bold;
|
||
|
border: none;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.most_outer_form_border {
|
||
|
position: fixed;
|
||
|
left: 0;
|
||
|
top: 0;
|
||
|
width: 100vw;
|
||
|
height: 100vh;
|
||
|
display: flex;
|
||
|
}
|
||
|
|
||
|
.outer_form_border {
|
||
|
margin: auto;
|
||
|
}
|