71 lines
1.2 KiB
CSS
71 lines
1.2 KiB
CSS
#ndx-ndx {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-orient: horizontal;
|
|
-webkit-box-direction: normal;
|
|
-ms-flex-direction: row;
|
|
flex-direction: row;
|
|
-ms-flex-wrap: wrap;
|
|
flex-wrap: wrap;
|
|
-webkit-box-pack: space-evenly;
|
|
-ms-flex-pack: space-evenly;
|
|
justify-content: space-evenly;
|
|
}
|
|
#ndx-ndx > section {
|
|
margin: 10px 10px auto 10px;
|
|
}
|
|
#ndx-ndx article > :last-child {
|
|
margin-bottom: 5px;
|
|
}
|
|
#ndx-news,
|
|
#ndx-more {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: normal;
|
|
-ms-flex-direction: column;
|
|
flex-direction: column;
|
|
width: min(90%, 500px);
|
|
}
|
|
#ndx-news article,
|
|
#ndx-more article {
|
|
border: var(--text) solid 3px;
|
|
padding: 15px;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
#ndx-decree {
|
|
width: min(90%, 670px);
|
|
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%;
|
|
}
|