Skip to content

Commit

Permalink
Updates & Cleaning
Browse files Browse the repository at this point in the history
  • Loading branch information
metahke committed Aug 30, 2023
0 parents commit a4e03c0
Show file tree
Hide file tree
Showing 16 changed files with 1,068 additions and 0 deletions.
45 changes: 45 additions & 0 deletions app/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<!DOCTYPE html>
<html data-theme="dark" lang="pl">
<head>
<meta charset="UTF-8" />

<script src="https://cdnjs.cloudflare.com/ajax/libs/Sortable/1.15.0/Sortable.min.js"></script>
<script src="./script.js" defer></script>

<title>Simple To Do App</title>
<meta name="viewport" content="width=device-width, initial-scale=1">

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@1/css/pico.min.css">
<link rel="stylesheet" href="styles.css">

<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />

</head>
<body class="container">
<header>
<div class="add-task-container">
<div class="flex-gap">
<input class="task-input-field" data-theme="dark" placeholder="" />
<button class="add-task-button button-flex-center-width-65">
<span class="material-symbols-outlined">
add
</span>
</button>
</div>
</div>
</header>
<main>
<section>
<div class="flex-gap between">
<h2>Lista projektów</h2>
<button class="clear-tasks-data warning button-flex-center-width-65">
<span class="material-symbols-outlined">
delete
</span>
</button>
</div>
<div class="tasks"></div>
</section>
</main>
</body>
</html>
Loading

0 comments on commit a4e03c0

Please sign in to comment.