forked from SPC/spc-site
Improve "Centre was created..." position on the main page
Improve the underlined image links fix
This commit is contained in:
parent
6f6960f8b8
commit
1756f0d6b1
@ -2491,4 +2491,14 @@ body.is-menu-visible #menu {
|
|||||||
opacity: 1;
|
opacity: 1;
|
||||||
visibility: visible; }
|
visibility: visible; }
|
||||||
|
|
||||||
|
#main div.inner.home_creationinfo {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
padding-top: 2.25em; }
|
||||||
|
#main div.inner.home_creationinfo a > span {
|
||||||
|
display: block; }
|
||||||
|
#main div.inner.home_creationinfo p {
|
||||||
|
margin: 0 0 0 1em; }
|
||||||
|
|
||||||
/*# sourceMappingURL=main.css.map */
|
/*# sourceMappingURL=main.css.map */
|
||||||
|
@ -585,8 +585,11 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
// Remove `border-bottom` from all `<a>` elements that also contain an `<img>`
|
// Remove `border-bottom` from all `<a>` elements that also contain an `<img>`
|
||||||
document.querySelectorAll("a > img").forEach(
|
document.querySelectorAll("a > img, a > span > img").forEach(
|
||||||
imgEl => { imgEl.parentElement.style.borderBottom = "none" }
|
imgEl => {
|
||||||
|
while (imgEl.tagName != "A") imgEl = imgEl.parentElement;
|
||||||
|
imgEl.style.borderBottom = "none";
|
||||||
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
})(jQuery);
|
})(jQuery);
|
||||||
|
15
data/home/assets/sass/custom/_home_creationinfo.scss
Normal file
15
data/home/assets/sass/custom/_home_creationinfo.scss
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
// A custom style for main page block with SPC creation info
|
||||||
|
#main div.inner.home_creationinfo {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
padding-top: 2.25em;
|
||||||
|
|
||||||
|
a > span {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin: 0 0 0 1em;
|
||||||
|
}
|
||||||
|
}
|
@ -74,3 +74,6 @@
|
|||||||
@import 'layout/footer';
|
@import 'layout/footer';
|
||||||
@import 'layout/wrapper';
|
@import 'layout/wrapper';
|
||||||
@import 'layout/menu';
|
@import 'layout/menu';
|
||||||
|
|
||||||
|
// Custom modifications.
|
||||||
|
@import 'custom/home_creationinfo';
|
||||||
|
@ -98,9 +98,9 @@ context(WebPage) private fun HTML.spcHome() {
|
|||||||
div {
|
div {
|
||||||
id = "main"
|
id = "main"
|
||||||
section {
|
section {
|
||||||
div("inner") {
|
div("inner home_creationinfo") {
|
||||||
a(href = "https://mipt.ru/education/departments/fpmi/") {
|
a(href = "https://mipt.ru/education/departments/fpmi/") {
|
||||||
span("image left") {
|
span("image") {
|
||||||
img {
|
img {
|
||||||
src = "images/FPMI.jpg"
|
src = "images/FPMI.jpg"
|
||||||
alt = "FPMI"
|
alt = "FPMI"
|
||||||
|
Loading…
Reference in New Issue
Block a user