Merge branch 'master' of gitlab.com:VickySteeves/personal-website
This commit is contained in:
commit
57ba378fa8
19
conf.py
19
conf.py
|
@ -1221,7 +1221,24 @@ INDEX_DISPLAY_POST_COUNT = 6
|
|||
# Google Analytics or whatever else you use. Added to the bottom of <body>
|
||||
# in the default template (base.tmpl).
|
||||
# (translatable)
|
||||
# BODY_END = ""
|
||||
BODY_END = """
|
||||
<!-- Matomo -->
|
||||
<script type="text/javascript">
|
||||
var _paq = window._paq || [];
|
||||
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
|
||||
_paq.push(['trackPageView']);
|
||||
_paq.push(['enableLinkTracking']);
|
||||
(function() {
|
||||
var u="//analytics.vickysteeves.hosting.nyu.edu/";
|
||||
_paq.push(['setTrackerUrl', u+'matomo.php']);
|
||||
_paq.push(['setSiteId', '2']);
|
||||
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
||||
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
|
||||
})();
|
||||
</script>
|
||||
<noscript><p><img src="//analytics.vickysteeves.hosting.nyu.edu/matomo.php?idsite=2&rec=1" style="border:0;" alt="" /></p></noscript>
|
||||
<!-- End Matomo Code -->
|
||||
"""
|
||||
|
||||
# The possibility to extract metadata from the filename by using a
|
||||
# regular expression.
|
||||
|
|
|
@ -84,3 +84,27 @@ li {
|
|||
.btn-outline-primary{
|
||||
border-color: #6695c4;
|
||||
}
|
||||
|
||||
/* --------------------RESPONSIVE DISPLAY HEADINGS--------------------------*/
|
||||
@media (max-width: 575.98px) {
|
||||
.display-1 {
|
||||
font-size: 3rem;
|
||||
font-weight: 300;
|
||||
line-height: 1.0;
|
||||
}
|
||||
.display-2 {
|
||||
font-size: 2.75rem;
|
||||
font-weight: 300;
|
||||
line-height: 1.0;
|
||||
}
|
||||
.display-3 {
|
||||
font-size: 2.25rem;
|
||||
font-weight: 300;
|
||||
line-height: 1.0;
|
||||
}
|
||||
.display-4 {
|
||||
font-size: 1.75rem;
|
||||
font-weight: 300;
|
||||
line-height: 1.0;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue