mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 19:26:38 -05:00
17 lines
289 B
Text
17 lines
289 B
Text
|
#subscription-form {
|
||
|
position: absolute;
|
||
|
top: 50%;
|
||
|
left: 0px;
|
||
|
right: 0px;
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
transform: translateY(-50%);
|
||
|
width: 200px;
|
||
|
|
||
|
input {
|
||
|
width: calc(100% ~"-" 10px);
|
||
|
padding: 3px;
|
||
|
margin: 5px;
|
||
|
}
|
||
|
}
|