Merge pull request #8 from GregTheMadMonk/layout-fixes
Minor layout fixes
This commit is contained in:
commit
38b6147794
3
.gitignore
vendored
3
.gitignore
vendored
@ -5,3 +5,6 @@ build/
|
|||||||
|
|
||||||
!gradle/wrapper/gradle-wrapper.jar
|
!gradle/wrapper/gradle-wrapper.jar
|
||||||
/deploy.ps1
|
/deploy.ps1
|
||||||
|
|
||||||
|
.sass-cache
|
||||||
|
*.css.map
|
||||||
|
@ -8,6 +8,13 @@ job("Deploy") {
|
|||||||
env["SPC_USER"] = Secrets("spc-webmaster-user")
|
env["SPC_USER"] = Secrets("spc-webmaster-user")
|
||||||
env["SPC_ID"] = Secrets("spc-webmaster-id")
|
env["SPC_ID"] = Secrets("spc-webmaster-id")
|
||||||
kotlinScript { api ->
|
kotlinScript { api ->
|
||||||
|
api.space().projects.automation.deployments.start(
|
||||||
|
project = api.projectIdentifier(),
|
||||||
|
targetIdentifier = TargetIdentifier.Key("spc-site"),
|
||||||
|
version = "current",
|
||||||
|
// automatically update deployment status based on a status of a job
|
||||||
|
syncWithAutomationJob = true
|
||||||
|
)
|
||||||
api.gradle("uploadDistribution")
|
api.gradle("uploadDistribution")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -3,13 +3,9 @@
|
|||||||
html5up.net | @ajlkn
|
html5up.net | @ajlkn
|
||||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Banner */
|
/* Banner */
|
||||||
|
|
||||||
body.is-preload #banner:after {
|
body.is-preload #banner:after {
|
||||||
opacity: 0.85;
|
opacity: 0.85; }
|
||||||
}
|
|
||||||
|
|
||||||
body.is-preload #banner > .inner {
|
body.is-preload #banner > .inner {
|
||||||
-moz-filter: none;
|
-moz-filter: none;
|
||||||
-webkit-filter: none;
|
-webkit-filter: none;
|
||||||
@ -19,5 +15,6 @@
|
|||||||
-webkit-transform: none;
|
-webkit-transform: none;
|
||||||
-ms-transform: none;
|
-ms-transform: none;
|
||||||
transform: none;
|
transform: none;
|
||||||
opacity: 1;
|
opacity: 1; }
|
||||||
}
|
|
||||||
|
/*# sourceMappingURL=noscript.css.map */
|
||||||
|
@ -584,4 +584,12 @@
|
|||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Remove `border-bottom` from all `<a>` elements that also contain an `<img>`
|
||||||
|
document.querySelectorAll("a > img, a > span > img").forEach(
|
||||||
|
imgEl => {
|
||||||
|
while (imgEl.tagName != "A") imgEl = imgEl.parentElement;
|
||||||
|
imgEl.style.borderBottom = "none";
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
})(jQuery);
|
})(jQuery);
|
@ -126,6 +126,10 @@
|
|||||||
font-style: italic;
|
font-style: italic;
|
||||||
margin: 0 0 _size(element-margin) 0;
|
margin: 0 0 _size(element-margin) 0;
|
||||||
padding: (_size(element-margin) / 4) 0 (_size(element-margin) / 4) _size(element-margin);
|
padding: (_size(element-margin) / 4) 0 (_size(element-margin) / 4) _size(element-margin);
|
||||||
|
|
||||||
|
ul:last-child {
|
||||||
|
margin-bottom: .25em;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
code {
|
code {
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
ol {
|
ol {
|
||||||
list-style: decimal;
|
list-style: decimal;
|
||||||
margin: 0 0 _size(element-margin) 0;
|
margin: 0 0 _size(element-margin) 0;
|
||||||
padding-left: 1.25em;
|
list-style-position: inside;
|
||||||
|
|
||||||
li {
|
li {
|
||||||
padding-left: 0.25em;
|
padding-left: 0.25em;
|
||||||
@ -19,7 +19,7 @@
|
|||||||
ul {
|
ul {
|
||||||
list-style: disc;
|
list-style: disc;
|
||||||
margin: 0 0 _size(element-margin) 0;
|
margin: 0 0 _size(element-margin) 0;
|
||||||
padding-left: 1em;
|
list-style-position: inside;
|
||||||
|
|
||||||
li {
|
li {
|
||||||
padding-left: 0.5em;
|
padding-left: 0.5em;
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
}
|
@ -32,6 +32,7 @@
|
|||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
max-width: _size(inner);
|
max-width: _size(inner);
|
||||||
width: calc(100% - 6em);
|
width: calc(100% - 6em);
|
||||||
|
overflow: auto;
|
||||||
|
|
||||||
@include breakpoint('<=small') {
|
@include breakpoint('<=small') {
|
||||||
@include padding(3em, 0);
|
@include padding(3em, 0);
|
||||||
@ -73,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';
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -3,41 +3,32 @@
|
|||||||
html5up.net | @ajlkn
|
html5up.net | @ajlkn
|
||||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Spotlights */
|
/* Spotlights */
|
||||||
|
|
||||||
.spotlights > section > .image:before {
|
.spotlights > section > .image:before {
|
||||||
opacity: 0 !important;
|
opacity: 0 !important; }
|
||||||
}
|
|
||||||
|
|
||||||
.spotlights > section > .content > .inner {
|
.spotlights > section > .content > .inner {
|
||||||
-moz-transform: none !important;
|
-moz-transform: none !important;
|
||||||
-webkit-transform: none !important;
|
-webkit-transform: none !important;
|
||||||
-ms-transform: none !important;
|
-ms-transform: none !important;
|
||||||
transform: none !important;
|
transform: none !important;
|
||||||
opacity: 1 !important;
|
opacity: 1 !important; }
|
||||||
}
|
|
||||||
|
|
||||||
/* Wrapper */
|
/* Wrapper */
|
||||||
|
|
||||||
.wrapper > .inner {
|
.wrapper > .inner {
|
||||||
opacity: 1 !important;
|
opacity: 1 !important;
|
||||||
-moz-transform: none !important;
|
-moz-transform: none !important;
|
||||||
-webkit-transform: none !important;
|
-webkit-transform: none !important;
|
||||||
-ms-transform: none !important;
|
-ms-transform: none !important;
|
||||||
transform: none !important;
|
transform: none !important; }
|
||||||
}
|
|
||||||
|
|
||||||
/* Sidebar */
|
/* Sidebar */
|
||||||
|
|
||||||
#sidebar > .inner {
|
#sidebar > .inner {
|
||||||
opacity: 1 !important;
|
opacity: 1 !important; }
|
||||||
}
|
|
||||||
|
|
||||||
#sidebar nav > ul > li {
|
#sidebar nav > ul > li {
|
||||||
-moz-transform: none !important;
|
-moz-transform: none !important;
|
||||||
-webkit-transform: none !important;
|
-webkit-transform: none !important;
|
||||||
-ms-transform: none !important;
|
-ms-transform: none !important;
|
||||||
transform: none !important;
|
transform: none !important;
|
||||||
opacity: 1 !important;
|
opacity: 1 !important; }
|
||||||
}
|
|
||||||
|
/*# sourceMappingURL=noscript.css.map */
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
ol {
|
ol {
|
||||||
list-style: decimal;
|
list-style: decimal;
|
||||||
margin: 0 0 _size(element-margin) 0;
|
margin: 0 0 _size(element-margin) 0;
|
||||||
padding-left: 1.25em;
|
list-style-position: inside;
|
||||||
|
|
||||||
li {
|
li {
|
||||||
padding-left: 0.25em;
|
padding-left: 0.25em;
|
||||||
@ -19,7 +19,7 @@
|
|||||||
ul {
|
ul {
|
||||||
list-style: disc;
|
list-style: disc;
|
||||||
margin: 0 0 _size(element-margin) 0;
|
margin: 0 0 _size(element-margin) 0;
|
||||||
padding-left: 1em;
|
list-style-position: inside;
|
||||||
|
|
||||||
li {
|
li {
|
||||||
padding-left: 0.5em;
|
padding-left: 0.5em;
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
@include padding(5em, 5em);
|
@include padding(5em, 5em);
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
width: _size(inner-width);
|
width: _size(inner-width);
|
||||||
|
overflow: auto;
|
||||||
|
|
||||||
@include breakpoint('<=xlarge') {
|
@include breakpoint('<=xlarge') {
|
||||||
@include padding(4em, 4em);
|
@include padding(4em, 4em);
|
||||||
|
@ -97,9 +97,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"
|
||||||
|
@ -137,7 +137,7 @@ context(WebPage) internal fun FlowContent.spcFooter() {
|
|||||||
// }
|
// }
|
||||||
}
|
}
|
||||||
ul("copyright") {
|
ul("copyright") {
|
||||||
li { +"""SPC""" }
|
li { +"""SPC. All rights reserved.""" }
|
||||||
li {
|
li {
|
||||||
+"""Design:"""
|
+"""Design:"""
|
||||||
a {
|
a {
|
||||||
|
Loading…
Reference in New Issue
Block a user