mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-12-25 14:37:02 +01:00
Titan on overclock feature
This commit is contained in:
parent
44ff83ef17
commit
d26c9c8e70
7
webapp/titanembeds/static/css/site.af.rainbow.css
Normal file
7
webapp/titanembeds/static/css/site.af.rainbow.css
Normal file
@ -0,0 +1,7 @@
|
||||
html {
|
||||
animation: rainbow 4s infinite;
|
||||
}
|
||||
|
||||
@keyframes rainbow {
|
||||
100% { filter: hue-rotate(360deg); }
|
||||
}
|
@ -12,6 +12,10 @@
|
||||
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='css/embed.css') }}">
|
||||
<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">
|
||||
|
||||
<!--Check whether JavaScript is enabled, otherwise redirect to error page-->
|
||||
|
@ -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="{{ 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-->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user