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(): ...@@ -37,6 +37,16 @@ def plushies():
print(plushie[0]) print(plushie[0])
return render_template('plushies.html',plosh=plushie) 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__': if __name__ == '__main__':
......
...@@ -17,8 +17,10 @@ h1 { ...@@ -17,8 +17,10 @@ h1 {
color: #53105e; color: #53105e;
} }
.softimage { .softimage {
width: 30em; min-height: 15em;
height: 30em; min-width: 15em;
max-height: 20em;
max-width: 15em;
object-position: center; object-position: center;
border-radius: 10%; border-radius: 10%;
object-fit: fill; object-fit: fill;
...@@ -52,4 +54,28 @@ button{ ...@@ -52,4 +54,28 @@ button{
td th { td th {
padding-right: 20px; padding-right: 20px;
cursor: pointer; 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 @@ ...@@ -3,11 +3,11 @@
<title>hOwOme</title> <title>hOwOme</title>
<div class="container bg-light"> <div class="container bg-light">
<div class="container-md"> <div class="container-md">
<h1> Hiiiiiiiiiiiiiii </h1> <h1 ID="girlmode"> Hiiiiiiiiiiiiiii </h1>
<h1>Welcome to my website </h1> <h1 id="girlmode">Welcome to my website </h1>
<h1>Its still under construction </h1> <h1 id="girlmode">Its still under construction </h1>
<h1>sorry </h1> <h1 id="girlmode">sorry </h1>
<h1>This website has {{view}} views</h1> <h1 id="girlmode">This website has {{view}} views</h1>
<img src="static/img/Adachi.png"> <img src="static/img/Adachi.png">
</div> </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> <head>
<!DOCTYPE html> <!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"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
...@@ -18,8 +21,9 @@ ...@@ -18,8 +21,9 @@
<div class="container-fluid"> <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 "> <ul class="navbar-nav ">
<li class="nav-item"> <li class="nav-item">
<a class="nav-link" href="/blog">Blogposting</a> <a class="nav-link" href="/blog">Blogposting</a>
......
235 289
\ No newline at end of file \ 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