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; } .icnml_box_top { text-align: center; padding: 3px; } .icnml_box_fields { display: grid; grid-template-columns: 1fr 2fr; grid-gap: 10px; margin-bottom: 10px; } .icnml_box_content { padding: 10px; } .icnml_box_warning { text-align: center; color: orange; margin-bottom: 10px; } .icnml_box_error { text-align: center; color: red; margin-bottom: 10px; } .icnml_shybox { text-align: right; } .icnml_shybox > a { color: #cccccc; text-decoration: None; } .icnml_button { text-align: center; } .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; } .icnml_main_layout { margin: 0px; display: grid; grid-template-areas: "logo info" "nav content"; grid-template-columns: 175px 5fr; grid-template-rows: auto 1fr; min-height: 100vh; } .icnml_header_bg { background-color: #303e4d; } .icnml_logo { grid-area: logo; color: rgb( 238, 238, 238 ); padding-left: 10px; font-size: 2em; font-weight: bold; } .icnml_user_info { grid-area: info; color: rgb( 238, 238, 238 ); text-align: right; padding-top: 10px; padding-bottom: 10px; padding-right: 10px; } .icnml_user_info > span { margin-left: 10px; } .icnml_navigation { grid-area: nav; }