Newer
Older
body {
background-color: rgb( 238, 238, 238 );
font-family: Segoe UI, Arial, sans-serif;
font-size: 0.8em;
}
a {
color: rgb( 238, 238, 238 );
}
.icnml_central {
width: 500px;
margin-left: auto;
margin-right: auto;
}
text-align: center;
padding: 3px;
}
display: grid;
grid-template-columns: 1fr 2fr;
grid-gap: 10px;
margin-bottom: 10px;
}
text-align: justify;
text-justify: inter-word;
text-align: center;
color: orange;
margin-bottom: 10px;
}
.icnml_box_error {
text-align: center;
color: red;
margin-bottom: 10px;
}
.icnml_shybox {
text-align: right;
}
color: #cccccc;
text-decoration: None;
}
.icnml_auto {
display: grid;
grid-template-columns: repeat( auto-fit, minmax( 10px, 1fr ) );
grid-gap: 10px;
margin-bottom: 10px;
.icnml_monospace {
text-align: center;
font-family: monospace;
border: 0;
margin: 0px;
display: grid;
grid-template-areas:
"logo info"
"nav content";
grid-template-columns: 175px 5fr;
grid-template-rows: auto 1fr;
min-height: 100vh;
grid-area: logo;
color: rgb( 238, 238, 238 );
padding-left: 10px;
font-size: 2em;
font-weight: bold;
}
grid-area: info;
color: rgb( 238, 238, 238 );
text-align: right;
padding-top: 10px;
padding-bottom: 10px;
padding-right: 10px;
}
.icnml_navigation {
grid-area: nav;
}