Skip to content
Snippets Groups Projects
Commit 14ca6e96 authored by Finlay White's avatar Finlay White :speech_balloon:
Browse files

rainbow

parent e6d2b312
No related branches found
No related tags found
No related merge requests found
No preview for this file type
......@@ -37,6 +37,16 @@ def plushies():
print(plushie[0])
return render_template('plushies.html',plosh=plushie)
@app.route('/hottakes')
def media():
if request.method =='GET':
conn = sqlite3.connect(db)
cur = conn.cursor()
cur.execute('select * from mediaReview')
plushie = cur.fetchall()
print(plushie[0])
return render_template('mediaReview.html',plosh=plushie)
if __name__ == '__main__':
......
......@@ -17,8 +17,10 @@ h1 {
color: #53105e;
}
.softimage {
width: 30em;
height: 30em;
min-height: 15em;
min-width: 15em;
max-height: 20em;
max-width: 15em;
object-position: center;
border-radius: 10%;
object-fit: fill;
......@@ -52,4 +54,28 @@ button{
td th {
padding-right: 20px;
cursor: pointer;
}
\ No newline at end of file
}
a {
cursor: pointer;
}
#girlmode {
background: linear-gradient(to right, #ff0000, #ff00ff, #0000ff, #00ffff, #00ff00, #ffff00, #ff0000);
background-clip: text;
color: transparent;
animation: rainbow 3s linear infinite;
background-size: 200% 100%;
}
@keyframes rainbow {
0% {
background-position: 0 0;
}
100% {
background-position: 200% 0;
}
}
static/img/3.ico

4.19 KiB

static/img/Plushies/FRIDGE.png

708 KiB

static/img/blog/chainsaw.jpg

16.6 KiB

static/img/blog/tdk.jpg

219 KiB

......@@ -3,11 +3,11 @@
<title>hOwOme</title>
<div class="container bg-light">
<div class="container-md">
<h1> Hiiiiiiiiiiiiiii </h1>
<h1>Welcome to my website </h1>
<h1>Its still under construction </h1>
<h1>sorry </h1>
<h1>This website has {{view}} views</h1>
<h1 ID="girlmode"> Hiiiiiiiiiiiiiii </h1>
<h1 id="girlmode">Welcome to my website </h1>
<h1 id="girlmode">Its still under construction </h1>
<h1 id="girlmode">sorry </h1>
<h1 id="girlmode">This website has {{view}} views</h1>
<img src="static/img/Adachi.png">
</div>
......
{%extends 'template2.html'%}
{%block homepage %}
<title>Media Review</title>
<div class="container bg-light">
<div class="container-md">
{%for cuddle in plosh %}
<div class="container">
<img src={{cuddle[3]}} class="softimage">
<div class="mt-3"><h2>_</h2></div>
<div class="mt-3">
<a onclick="window.open('{{cuddle[1]}}')"class="title"> {{cuddle[0].title()}}</p>
<a>{{cuddle[-1]}}</a>
<p>{{cuddle[2]}}</p>
</div>
</div>
<br>
<br>
{%endfor%}
</div>
</div>
{%endblock%}
<head>
<!DOCTYPE html>
<link rel="SHORTCUT ICON" href="static/img/3.ico" type="image/x-icon" />
<link rel="ICON" href="static/img/3.ico" type="image/ico" />
<html lang="en">
<head>
<meta charset="UTF-8">
......@@ -18,8 +21,9 @@
<div class="container-fluid">
<a class="navbar-brand" href="home">my website uwu</a>
<a class="navbar-brand" id = "girlmode"href="home">my website </a>
<ul class="navbar-nav ">
<li class="nav-item">
<a class="nav-link" href="/blog">Blogposting</a>
......
235
\ No newline at end of file
289
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment