center help and print dialogs vertically
This commit is contained in:
parent
7656399c61
commit
aa1053452c
2 changed files with 7 additions and 6 deletions
1
notes.md
1
notes.md
|
|
@ -15,6 +15,7 @@
|
|||
|
||||
# FDM
|
||||
|
||||
* `F` control for size of purge block (with 0=disabled)
|
||||
* `F` add separate fill speed control
|
||||
* `F` manual support addition / control
|
||||
* `F` polishing and other non-planar work
|
||||
|
|
|
|||
|
|
@ -216,10 +216,10 @@ input[type=range]::-moz-focus-outer {
|
|||
|
||||
#print {
|
||||
position: fixed;
|
||||
-webkit-transform: translate(-50%, 0);
|
||||
transform: translate(-50%, 0);
|
||||
-webkit-transform: translate(-50%, -50%);
|
||||
transform: translate(-50%, -50%);
|
||||
text-align: center;
|
||||
top: 50px;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
color: black;
|
||||
border: 10px solid #ddd;
|
||||
|
|
@ -345,10 +345,10 @@ input[type=range]::-moz-focus-outer {
|
|||
|
||||
#help {
|
||||
position: fixed;
|
||||
-webkit-transform: translate(-50%, 0);
|
||||
transform: translate(-50%, 0);
|
||||
-webkit-transform: translate(-50%, -50%);
|
||||
transform: translate(-50%, -50%);
|
||||
text-align: left;
|
||||
top: 50px;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
color: black;
|
||||
border-radius: 10px;
|
||||
|
|
|
|||
Loading…
Reference in a new issue