59 lines
896 B
CSS
59 lines
896 B
CSS
#ndx-ndx {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
}
|
|
#ndx-ndx > section {
|
|
margin: auto;
|
|
}
|
|
#ndx-ndx article > :last-child {
|
|
margin-bottom: 5px;
|
|
}
|
|
#ndx-news,
|
|
#ndx-more {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-grow: 1;
|
|
max-width: min(90%, 500px);
|
|
}
|
|
#ndx-news article,
|
|
#ndx-more article {
|
|
border: var(--text) solid 3px;
|
|
padding: 15px;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
#ndx-decree {
|
|
max-width: min(90%, 670px);
|
|
flex-grow: 2;
|
|
text-align: center;
|
|
border: var(--text) double 8px;
|
|
}
|
|
#ndx-decree ul {
|
|
padding: 0;
|
|
}
|
|
#ndx-decree ul li {
|
|
list-style-type: none;
|
|
}
|
|
#ndx-decree table {
|
|
margin: auto;
|
|
}
|
|
#ndx-decree table tr td:first-child {
|
|
text-align: right;
|
|
}
|
|
#ndx-decree table tr td:last-child {
|
|
text-align: left;
|
|
}
|
|
|
|
#ndx-news h1,
|
|
#ndx-news h2 {
|
|
margin: 5px auto;
|
|
}
|
|
#ndx-news h2 {
|
|
color: var(--subtext);
|
|
font-size: small;
|
|
}
|
|
|
|
#ndx-more img {
|
|
width: 100%;
|
|
}
|