matdbg
- Materials are now sorted by name and the sha id is hidden.
- PostProcess materials now separated from Surface materials.
- PostProcess details now hide the non-existing properties.
- Larger default pane size for the material list.
- Use nicer font.
matinfo
- Print out the Material Domain.
filament
- get*Slow methods in FMaterial are now private.
93 lines
1.1 KiB
CSS
93 lines
1.1 KiB
CSS
html, body, .viewport {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Lexend Deca', sans-serif;
|
|
overflow: hidden;
|
|
}
|
|
|
|
a, a:visited {
|
|
text-decoration: none;
|
|
color: #567;
|
|
cursor: pointer;
|
|
}
|
|
|
|
a:hover, a.current {
|
|
font-weight: bold;
|
|
color: #07f;
|
|
}
|
|
|
|
a.inactive {
|
|
color: #aaa;
|
|
}
|
|
|
|
pre {
|
|
font-family: Menlo, Monaco, "Courier New", monospace;
|
|
}
|
|
|
|
.vbox {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.scrollable {
|
|
position: relative;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
.scrollable > * {
|
|
position: absolute;
|
|
}
|
|
|
|
.squishy {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.stretchy {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.hbox {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.space-between {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
header, footer {
|
|
height: 26px;
|
|
background: cornflowerblue;
|
|
padding: 5px 0 0 5px;
|
|
}
|
|
|
|
.main {
|
|
flex: 1;
|
|
}
|
|
|
|
article {
|
|
flex: 5;
|
|
border-top: solid 2px;
|
|
border-bottom: solid 2px;
|
|
visibility: hidden;
|
|
}
|
|
|
|
nav {
|
|
border: solid 2px;
|
|
font-size: 12px;
|
|
flex: 1;
|
|
}
|
|
|
|
nav > *:first-child {
|
|
border-bottom: solid 2px;
|
|
}
|
|
|
|
nav > * {
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
}
|