mirror of
https://github.com/wassname/ray.git
synced 2026-06-28 22:53:49 +08:00
08707f9408
* Initial integration of webui with ray * Re-organized calling of build-webui in setup.py * Fixed Lint comments on js code * Fixed more lint issues * Fixed various issues * Fixed directory in services.py * Small changes. * Changes to match lint
85 lines
1.2 KiB
CSS
85 lines
1.2 KiB
CSS
.GridContainer {
|
|
margin-top: 15px;
|
|
border: 1px solid #e0e0e0;
|
|
}
|
|
|
|
.GridRow {
|
|
margin-top: 15px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
.GridColumn {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1 1 auto;
|
|
}
|
|
.LeftSideGridContainer {
|
|
flex: 0 0 50px;
|
|
}
|
|
|
|
.BodyGrid {
|
|
width: 100%;
|
|
border: 1px solid #e0e0e0;
|
|
}
|
|
|
|
.evenRow,
|
|
.oddRow {
|
|
border-bottom: 1px solid #e0e0e0;
|
|
}
|
|
.oddRow {
|
|
background-color: #fafafa;
|
|
}
|
|
|
|
.cell,
|
|
.headerCell {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
padding: 0 .5em;
|
|
}
|
|
.cell {
|
|
border-right: 1px solid #e0e0e0;
|
|
border-bottom: 1px solid #e0e0e0;
|
|
display: flex;
|
|
flex-direction: row;
|
|
background-color: white;
|
|
}
|
|
.rowbutton:hover {
|
|
background-color: blue;
|
|
}
|
|
.rowbutton:hover *{
|
|
background-color: gold;
|
|
}
|
|
.headerCell {
|
|
font-weight: bold;
|
|
border-right: 1px solid #e0e0e0;
|
|
}
|
|
.centeredCell {
|
|
align-items: center;
|
|
text-align: center;
|
|
}
|
|
.table {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
.letterCell {
|
|
font-size: 1.5em;
|
|
color: #fff;
|
|
text-align: center;
|
|
}
|
|
|
|
.noCells {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 1em;
|
|
color: #bdbdbd;
|
|
}
|