တမ်းပလိတ်:ဗဟိုစာမျက်နှာ/styles.css
ပုံပန်းသွင်ပြင်
/* These are the TemplateStyles styles for the မြန်မာဘာသာ Main page. */
/* Assign widgets to named grid areas. */
#myws-mainpage-header-container {
grid-area: header;
}
#myws-mainpage-featured-container {
grid-area: featured;
}
#myws-mainpage-collaboration-container {
grid-area: collaboration;
}
#myws-mainpage-newtexts-container {
grid-area: newtexts;
}
#myws-mainpage-highlights-container {
grid-area: highlights;
}
#myws-mainpage-explore-container {
grid-area: explore;
}
#myws-mainpage-sisters-container {
grid-area: sisters;
}
#myws-mainpage-content {
/* keep the mw-indicators above the main content
* normally, they go next to the H1 title, but there isn't one here */
clear: both;
display: grid;
grid-gap: 0 1em;
grid-template-areas:
"header"
"featured"
"newtexts"
"highlights"
"collaboration"
"explore"
"sisters";
margin-right: 1em;
}
/* The banner with links at the bottom of the New Texts widget */
/* Temporary specific rules to move away from the style attribute to a stylesheet */
#myws-mainpage-newtexts-banner {
margin: 0.5em auto 0.25em auto;
text-align: center;
font-size: 92%;
}
@media all and (min-width: 1000px) {
/* The container for the flexible middle section of the main page that contains the content boxes. */
#myws-mainpage-content {
display: grid;
grid-template-columns: 55% 45%;
grid-template-areas:
"header header"
"featured newtexts"
"collaboration highlights"
"collaboration explore"
"sisters sisters";
}
/* Each content box. */
.myws-mainpage-widget-content {
margin: 1em;
}
.myws-mainpage-widget-header {
background-color: #5090C0;
font-weight: bold;
color: white;
padding: 0.3em 1em;
margin: 0 0 1em 0;
font-size: inherit;
text-align: center;
text-transform: uppercase;
}
.myws-mainpage-widget {
border: 1px solid #5090C0;
margin: 0 0 0 0;
}
#myws-mainpage-header-container {
margin-bottom: 1em;
}
#myws-mainpage-sisters-container {
margin-top: 1em;
}
} /* END: @media all and (min-width: 720px) */