anilife update 2022.10.23(01.)

This commit is contained in:
2022-10-24 00:18:12 +09:00
parent a426a57824
commit 11a933a4f6
3 changed files with 38 additions and 2 deletions

View File

@@ -451,7 +451,7 @@ class LogicAniLife(LogicModuleBase):
"--no-first-run", "--no-first-run",
"--no-zygote", "--no-zygote",
# "--single-process", # "--single-process",
# "--disable-gpu", "--disable-gpu",
"--use-gl=egl", "--use-gl=egl",
"--disable-blink-features=AutomationControlled", "--disable-blink-features=AutomationControlled",
"--disable-background-networking", "--disable-background-networking",

View File

@@ -652,5 +652,13 @@
button.btn-favorite { button.btn-favorite {
background-color: #e0ff42; background-color: #e0ff42;
} }
body {
font-family: NanumSquareNeo, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Noto Sans, Liberation Sans, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}
body {
background-image: linear-gradient(90deg, #233f48, #6c6fa2, #768dae);
}
</style> </style>
{% endblock %} {% endblock %}

View File

@@ -140,5 +140,33 @@ function make_list(data) {
</script> </script>
<style>
body {
width: 100%;
/*height: 100vh;*/
/*display: flex;*/
align-items: center;
justify-content: center;
background-size: 300% 300%;
background-image: linear-gradient(
-45deg,
rgba(59,173,227,1) 0%,
rgba(87,111,230,1) 25%,
rgba(152,68,183,1) 51%,
rgba(255,53,127,1) 100%
);
animation: AnimateBG 20s ease infinite;
}
#main_container {
background-color: white;
}
@keyframes AnimateBG {
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}
</style>
{% endblock %} {% endblock %}