previous-changes

master
xpub1 1 year ago
parent cfc87d25ac
commit d3473d69ec

@ -9,7 +9,6 @@ body{
font-family: monospace;
background-color: var(--color1);
color: var(--color2);
font-size: 1.5rem;
margin: 2rem auto;
max-width: 60rem;
padding: 1rem;
@ -62,10 +61,15 @@ textarea{
}
.two-col{
max-width: calc(50% - 4rem);
float: left;
padding-right: 2rem;
margin: 1rem 0;
}
p{font-size: 1rem;}
@media screen and (min-width: 768px){
.two-col{max-width: calc(50% - 4rem);}
p{font-size: 1rem;}
body{font-size: 1.5rem;}
@media screen and (max-width: 767px){
body{font-size: 3rem;}
}

@ -1,12 +1,13 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./static/style.css" />
</head>
<body>
<h1>gesture glossary ✌️</h1>
<div class="two-col">
<h4>This is the gesture glossary. Click a word to the right to see the gestures related to it. </h4>
<p>The aim is to see if a gesture glossary works and how it will work best. Also to see what kind of different interpretations there will be on gestures of our memory. To test the gesture glossary idea, and see what different meanings appear or already exist in the current vocabulary. Putting next to each other different agreements on linguistic and body units, testing what makes sense. Investigating and playing with communicational channel in between us, how a body language is documented, how it expands, how it is capable of creating or enhancing identities. To be an xpub means to speak/perform the xpub language?</p>
<h4>This is the gesture glossary. Click a word to see the gestures related to it. </h4>
<p>The aim is to see if a gesture glossary works and how it will work best. Also to see what kind of different interpretations there will be on gestures of our memory. To test the gesture glossary idea, and see what different meanings appear or already exist in the current vocabulary. Putting next to each other different agreements on linguistic and body units, testing what makes sense. Investigating and playing with communicational channels in between us, how a body language is documented, how it expands, how it is capable of creating or enhancing identities. To be an xpub means to speak/perform the xpub language?</p>
</div>
<div class="two-col">
{% for word in text
@ -14,4 +15,4 @@
endfor %}
</div>
</body>
</html>
</html>

@ -1,9 +1,10 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./static/style.css" />
</head>
<body>
<a href="/" ><h1 class="button">{{word}} <span class="close">x</span></h1></a>
<a href="/breadcube/gesture/" ><h1 class="button">{{word}} <span class="close">x</span></h1></a>
{% for file in wordmedia %}
<div class="two-col">
<!-- <h2>Video {{file}}</h2> -->
@ -15,4 +16,4 @@
</div>
{% endfor %}
</body>
</html>
</html>

@ -1,2 +1,2 @@
OVERLAP_APPLICATION_ROOT=/overlap
OVERLAP_APPLICATION_ROOT=/breadcube/overlap
OVERLAP_PORTNUMBER=5000

@ -63,7 +63,7 @@ def upload_file():
# print(f"del { UPLOAD_FOLDER + file.filename }")
# os.system(f"del { UPLOAD_FOLDER + file.filename }")
return redirect("/")
return redirect("/breadcube/overlap/")
# f = request.files['the_file']
# f.save('/var/www/uploads/uploaded_file.txt')

@ -1,12 +1,24 @@
<html>
<head>
<style>
img{
max-width: 25%;
transition: transform 1s ease-in-out;
}
img:hover{
transform: rotate(360deg) scale(200%);
}
body{
color: purple;
}
</style>
</head>
<body>
{% for image in images %}
<img src="{{ image|replace('./', '/') }}">
<img src="{{ image|replace('./','/breadcube/overlap/') }}">
{% endfor %}
<form action="{{ url_for('upload2_file', image=image) }}" method="POST" enctype="multipart/form-data">
<label for="tile">Choose an image to upload:</label>
<label for="tile">Pick an image to upload:</label>
<input type="file"
id="tile" name="tile" required>
<input type="submit" value="Upload">

Loading…
Cancel
Save