Move styling in baselayout to css file

This commit is contained in:
jvyden 2021-12-18 15:48:26 -05:00
parent d2ec550421
commit 6e14b3b608
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278
2 changed files with 9 additions and 11 deletions

View file

@ -64,17 +64,6 @@
gtag('config', '@ServerSettings.Instance.GoogleAnalyticsId');
</script>
}
<style>
canvas.photo-subjects {
opacity: 1;
transition: opacity 0.3s;
}
canvas.hide-subjects {
opacity: 0;
}
</style>
</head>
<body>
<div class="pageContainer">

View file

@ -16,3 +16,12 @@ div.statsUnderTitle > span {
margin-right: 5px;
}
canvas.photo-subjects {
opacity: 1;
transition: opacity 0.3s;
}
canvas.hide-subjects {
opacity: 0;
}