Skip to content

Commit

Permalink
css: update css style
Browse files Browse the repository at this point in the history
  • Loading branch information
i0Ek3 committed May 4, 2024
1 parent 5d881c1 commit 5ba792b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
Binary file modified rpg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 13 additions & 6 deletions templates/index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<!DOCTYPE html>
<html>

<head>
<title>RPG: Random Password Generator</title>
<style>
Expand Down Expand Up @@ -28,21 +29,27 @@
}

p {
align-self: center;
font-family: "Ubuntu", sans-serif;
font-size: 30px;
color: black;
font-size: 16px;
background-color: rgb(177, 238, 249);
padding: 10px;
margin: 5px 0;
border: 1px solid #3cbd8a;
border-radius: 4px;
backdrop-filter: blur(5px);
}
</style>
</head>

<body>
<form action="/" method="POST">
<button type="submit">Generate</button>
</form>
{% for password in password_list %}
{% if password %}
<p>{{ password }}</p>
{% endif %}
{% if password %}
<p>{{ password }}</p>
{% endif %}
{% endfor %}
</body>

</html>

0 comments on commit 5ba792b

Please sign in to comment.