Skip to content

Commit

Permalink
update readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kiminus committed May 12, 2024
1 parent ca6386c commit 38f70bb
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,35 @@

Main project for CSE 110. Includes calendar, journal entries, contact pages, progression meter, a task list, all within a polish UI

# Project cards
# preview

### home page

# Documentation

## project-card

- HTML element name: `project-card`
- JS element class: `ProductCard`
- sample project card HTML:

```HTML
<project-card>
<div class="project-card">
<p class="name">warmup</p>
<img src="https://fakestoreapi.com/img/81fPKd-2AYL._AC_SL1500_.jpg" alt="warmup" class="project-image">
<div class="desc">a warmup project</div>
<div class="progress-bar">
<div class="progress-bar-fill" style="width: 79%;">79</div>
</div>
<div class="actions">
<button>progress + random</button>
<button>open</button>
<button>options</button>
</div>
</div>
</project-card>
```

# projects.JSON

Expand Down

0 comments on commit 38f70bb

Please sign in to comment.