Titan on overclock feature

This commit is contained in:
Jeremy Zhang 2019-03-31 20:40:54 +00:00
parent 44ff83ef17
commit d26c9c8e70
3 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,7 @@
html {
animation: rainbow 4s infinite;
}
@keyframes rainbow {
100% { filter: hue-rotate(360deg); }
}

View File

@ -12,6 +12,10 @@
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='css/embed.css') }}"> <link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='css/embed.css') }}">
<link id="css-theme" type="text/css" rel="stylesheet" href=""> <link id="css-theme" type="text/css" rel="stylesheet" href="">
{% if af_mode_enabled %}
<link rel="stylesheet" href="{{ url_for('static', filename='css/site.af.rainbow.css') }}">
{% endif %}
<meta name="robots" content="noindex, nofollow"> <meta name="robots" content="noindex, nofollow">
<!--Check whether JavaScript is enabled, otherwise redirect to error page--> <!--Check whether JavaScript is enabled, otherwise redirect to error page-->

View File

@ -7,6 +7,10 @@
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css" integrity="sha256-e22BQKCF7bb/h/4MFJ1a4lTRR2OuAe8Hxa/3tgU5Taw=" crossorigin="anonymous" /> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css" integrity="sha256-e22BQKCF7bb/h/4MFJ1a4lTRR2OuAe8Hxa/3tgU5Taw=" crossorigin="anonymous" />
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}"> <link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
{% if af_mode_enabled %}
<link rel="stylesheet" href="{{ url_for('static', filename='css/site.af.rainbow.css') }}">
{% endif %}
<!--Let browser know website is optimized for mobile--> <!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/> <meta name="viewport" content="width=device-width, initial-scale=1.0"/>