Skip to content

Commit

Permalink
chore: updated styles and documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
codesandtags committed Dec 31, 2023
1 parent fcc631a commit fdeae63
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 8 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

This is a list of things I use in my daily life as a Developer and Human.

## How to use

- You can use this list as a reference to find new tools or products.
- You can use this list to create your own list.

### Steps

1. Fork this repository and edit the README.md file.
2. Add your own tools or products changing the content of `schema/uses.json` file.
3. Adapt the `schema/uses.json` file to your own needs.
4. Deploy your own list using [Vercel](https://vercel.com/) or [Github Pages](https://pages.github.com/).
5. Optionally you can edit this README.md file to add your own list.

## 📝 Table of Contents

# Software

## 🧑‍💻 Development
Expand Down
32 changes: 26 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>What I use? - Codesandtags</title>
<title>What I use? - codesandtags</title>
<meta
name="description"
content="A list of the things I use in my daily life as a Software Engineer and Human."
Expand Down Expand Up @@ -51,11 +51,31 @@ <h1>What I use?</h1>
<img src="./public/img/bg-header.png" alt="Edwin Torres" />
</div>
<div class="header-text">
👋 Hi I'm <span class="hightlight">Edwin Torres</span>, and I want to
share the things I use in my daily life as a
<span class="hightlight">Software Engineer</span> and Human.

I have created a set of scripts to init my laptop or development environment <a href="https://github.com/codesandtags/what-i-use/tree/main/configs" target="_blank">here on Github</a>.
<p class="hero">
👋 Hi I'm <span class="hightlight">Edwin Torres</span>, and I want
to share the things I use in my daily life as a
<span class="hightlight">Software Engineer</span> and Human.
</p>
<div class="announcement">
<p>
Create your own list and share it with the world. You can find the
<a
href="https://github.com/codesandtags/what-i-use"
target="_blank"
>here on Github</a
>.
</p>
<div class="text--center">
<iframe
src="https://ghbtns.com/github-btn.html?user=codesandtags&repo=what-i-use&type=star&count=true&size=large"
width="170"
height="30"
frameborder="0"
scrolling="0"
title="GitHub Stars"
></iframe>
</div>
</div>
</div>
</header>
<main id="main-container"></main>
Expand Down
21 changes: 19 additions & 2 deletions styles/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ body.dark-mode {
--color-secondary-text: #cccccc;
--color-border: #444444;
--color-link: #fbb51e;
--color-card: #444444;
--color-card: #333;
--color-category-title-bg: #222;
--color-category-title-text: #fbb51e;
--color-background-header: rgba(10, 10, 10, 0.9);
Expand Down Expand Up @@ -246,7 +246,8 @@ nav h1 {
margin-left: 5px;
}

a, a:visited {
a,
a:visited {
color: var(--color-link);
text-decoration: none;
cursor: pointer;
Expand All @@ -255,3 +256,19 @@ a, a:visited {
a:hover {
text-decoration: underline;
}

.text--center {
text-align: center;
}

.announcement {
margin-top: 2rem;
padding: 10px;
color: var(--color-secondary-text);
font-size: 1.5rem;
text-align: center;
}

.announcement p {
margin-bottom: 2rem;
}

0 comments on commit fdeae63

Please sign in to comment.