groups upd, more org settings, bug fixes

This commit is contained in:
Ivan
2023-09-14 05:40:03 +03:00
parent ccb1931d02
commit 8ec567409b
13 changed files with 1240 additions and 202 deletions

View File

@ -34,7 +34,19 @@
<video class="animation right" autoplay muted loop>
<source src="../img/traffic.mp4" type="video/mp4">
</video>
<span class="copyright right"><a href="https://dribbble.com/shots/15608015-Traffic">Видеоматериал создан Igor Kozak для 10Clouds</a></span>
<span class="copyright right" id="copyright"><a href="https://dribbble.com/shots/15608015-Traffic" target="_blank">Видеоматериал создан Igor Kozak для 10Clouds</a></span>
<span id="info-icon" class="right"><a href="https://dribbble.com/shots/15608015-Traffic" target="_blank">i</a></span>
<script>
document.getElementById('info-icon').addEventListener('mouseenter', function () {
document.getElementById('copyright').style.opacity = '1';
});
document.getElementById('info-icon').addEventListener('mouseleave', function () {
document.getElementById('copyright').style.opacity = '0';
});
</script>
<script>
document.addEventListener("DOMContentLoaded", function() {