-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit a4e03c0
Showing
16 changed files
with
1,068 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.