Added rudimentary CSS support for side-by-side machines (the PDP-11/45 with VT100 is the first test case)
This commit is contained in:
parent
e007b75f8e
commit
4f7f72af57
19 changed files with 80 additions and 30 deletions
|
|
@ -52,7 +52,7 @@
|
|||
}
|
||||
.pcjs-progress {
|
||||
height: 20px;
|
||||
width: 300px;
|
||||
width: 200px;
|
||||
margin-top: 8px;
|
||||
border: 1px solid black;
|
||||
position: relative;
|
||||
|
|
@ -66,7 +66,7 @@
|
|||
}
|
||||
.pcjs-progress-text {
|
||||
height: 20px;
|
||||
width: 300px;
|
||||
width: 200px;
|
||||
font-size: small;
|
||||
line-height: 20px;
|
||||
text-align: center;
|
||||
|
|
@ -224,7 +224,7 @@
|
|||
text-decoration: none;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 900px) {
|
||||
@media screen and (max-width: 800px) {
|
||||
.pcjs-textarea {
|
||||
width: 100% !important;
|
||||
}
|
||||
|
|
@ -242,3 +242,13 @@
|
|||
padding-right: 0 !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1400px) {
|
||||
.machine-left, .machine-right {
|
||||
max-width: 45%;
|
||||
float: left;
|
||||
}
|
||||
.machine-right + * {
|
||||
clear: both;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue