0.0.04 form poster
This commit is contained in:
@@ -11,6 +11,12 @@
|
||||
--label-font-size: 16px;
|
||||
--label-font-weight: 500;
|
||||
|
||||
--textarea-min-width: 100%;
|
||||
--textarea-max-width: 100%;
|
||||
--textarea-width: 100%;
|
||||
--textarea-height: unset;
|
||||
--textarea-resize: none;
|
||||
|
||||
box-sizing: border-box;
|
||||
label{
|
||||
display: block;
|
||||
@@ -27,9 +33,37 @@
|
||||
|
||||
input{
|
||||
padding: 20px 10px;
|
||||
border: 1px solid var(--input-border);
|
||||
border: 2px solid var(--input-border);
|
||||
border-radius: var(--input-border-radius);
|
||||
font-size: var(--input-font-size);
|
||||
font-family: var(--main-font-family), serif;
|
||||
box-sizing: border-box;
|
||||
outline: none;
|
||||
&.dropped{
|
||||
border: none;
|
||||
outline: none;
|
||||
background: none;
|
||||
padding: 0;
|
||||
border-radius: 0;
|
||||
}
|
||||
&::placeholder{
|
||||
font-size: var(--placeholder-font-size);
|
||||
color: var(--placeholder-color);
|
||||
}
|
||||
}
|
||||
textarea{
|
||||
padding: 20px 10px;
|
||||
border: 2px solid var(--input-border);
|
||||
border-radius: var(--input-border-radius);
|
||||
font-size: var(--input-font-size);
|
||||
font-family: var(--main-font-family), serif;
|
||||
min-width: var(--textarea-min-width);
|
||||
max-width: var(--textarea-max-width);
|
||||
width: var(--textarea-width);
|
||||
height: var(--textarea-height);
|
||||
resize: var(--textarea-resize);
|
||||
outline: none;
|
||||
box-sizing: border-box;
|
||||
&::placeholder{
|
||||
font-size: var(--placeholder-font-size);
|
||||
color: var(--placeholder-color);
|
||||
|
||||
Reference in New Issue
Block a user