Module
TransportDiagram/styles.css
From Dogcraft Wiki
(Created page with ".transport-diagram { display: flex; flex-direction: column; } .track img { margin: 0; width: 30px; height: 30px; } .diagram-row { display: flex; flex-direction: row;...") |
No edit summary |
||
Line 1: | Line 1: | ||
/* Transport Diagram styles */ | |||
.transport-diagram { | .transport-diagram { | ||
display: flex; | display: flex; | ||
flex-direction: column; | flex-direction: column; | ||
border: 1px solid #aaa; | |||
border-radius: 10px; | |||
background-color: #E9EDEF; | |||
float: right; | |||
clear: right; | |||
width: 22em; | |||
font-size: 88%; | |||
line-height: 1.5em; | |||
} | } | ||
Revision as of 19:53, 3 October 2022
/* Transport Diagram styles */
.transport-diagram {
display: flex;
flex-direction: column;
border: 1px solid #aaa;
border-radius: 10px;
background-color: #E9EDEF;
float: right;
clear: right;
width: 22em;
font-size: 88%;
line-height: 1.5em;
}
.track img {
margin: 0;
width: 30px;
height: 30px;
}
.diagram-row {
display: flex;
flex-direction: row;
justify-content: space-between;
}
This page was last modified on 3 October 2022, at 19:53. (2 years ago)