Move styling in baselayout to css file

This commit is contained in:
jvyden 2021-12-18 15:48:26 -05:00
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'); gtag('config', '@ServerSettings.Instance.GoogleAnalyticsId');
</script> </script>
} }
<style>
canvas.photo-subjects {
opacity: 1;
transition: opacity 0.3s;
}
canvas.hide-subjects {
opacity: 0;
}
</style>
</head> </head>
<body> <body>
<div class="pageContainer"> <div class="pageContainer">

View file

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