Skip to content

Commit

Permalink
Finalización
Browse files Browse the repository at this point in the history
  • Loading branch information
Neofitar committed Dec 23, 2023
1 parent ce2b4e1 commit e57b3de
Show file tree
Hide file tree
Showing 10 changed files with 265 additions and 0 deletions.
93 changes: 93 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
# Frontend Mentor - Blog preview card

![Design preview for the Blog preview card coding challenge](./design/desktop-preview.jpg)

## Welcome! 👋

Thanks for checking out this front-end coding challenge.

[Frontend Mentor](https://www.frontendmentor.io) challenges help you improve your coding skills by building realistic projects.

**To do this challenge, you need a basic understanding of HTML and CSS.**

## The challenge

Your challenge is to build out this blog preview card and get it looking as close to the design as possible.

You can use any tools you like to help you complete the challenge. So if you've got something you'd like to practice, feel free to give it a go.

Your users should be able to:

- See hover and focus states for all interactive elements on the page

Want some support on the challenge? [Join our community](https://www.frontendmentor.io/community) and ask questions in the **#help** channel.

## Where to find everything

Your task is to build out the project to the designs inside the `/design` folder. You will find both a mobile and a desktop version of the design.

The designs are in JPG static format. Using JPGs will mean that you'll need to use your best judgment for styles such as `font-size`, `padding` and `margin`.

If you would like the design files (we provide Sketch & Figma versions) to inspect the design in more detail, you can [subscribe as a PRO member](https://www.frontendmentor.io/pro).

All the required assets for this project are in the `/assets` folder. The images are already exported for the correct screen size and optimized.

We also include variable and static font files for the required fonts for this project. You can choose to either link to Google Fonts or use the local font files to host the fonts yourself. Note that we've removed the static font files for the font weights that aren't needed for this project.

There is also a `style-guide.md` file containing the information you'll need, such as color palette and fonts.

## Building your project

Feel free to use any workflow that you feel comfortable with. Below is a suggested process, but do not feel like you need to follow these steps:

1. Initialize your project as a public repository on [GitHub](https://github.com/). Creating a repo will make it easier to share your code with the community if you need help. If you're not sure how to do this, [have a read-through of this Try Git resource](https://try.github.io/).
2. Configure your repository to publish your code to a web address. This will also be useful if you need some help during a challenge as you can share the URL for your project with your repo URL. There are a number of ways to do this, and we provide some recommendations below.
3. Look through the designs to start planning out how you'll tackle the project. This step is crucial to help you think ahead for CSS classes to create reusable styles.
4. Before adding any styles, structure your content with HTML. Writing your HTML first can help focus your attention on creating well-structured content.
5. Write out the base styles for your project, including general content styles, such as `font-family` and `font-size`.
6. Start adding styles to the top of the page and work down. Only move on to the next section once you're happy you've completed the area you're working on.

## Deploying your project

As mentioned above, there are many ways to host your project for free. Our recommend hosts are:

- [GitHub Pages](https://pages.github.com/)
- [Vercel](https://vercel.com/)
- [Netlify](https://www.netlify.com/)

You can host your site using one of these solutions or any of our other trusted providers. [Read more about our recommended and trusted hosts](https://medium.com/frontend-mentor/frontend-mentor-trusted-hosting-providers-bf000dfebe).

## Create a custom `README.md`

We strongly recommend overwriting this `README.md` with a custom one. We've provided a template inside the [`README-template.md`](./README-template.md) file in this starter code.

The template provides a guide for what to add. A custom `README` will help you explain your project and reflect on your learnings. Please feel free to edit our template as much as you like.

Once you've added your information to the template, delete this file and rename the `README-template.md` file to `README.md`. That will make it show up as your repository's README file.

## Submitting your solution

Submit your solution on the platform for the rest of the community to see. Follow our ["Complete guide to submitting solutions"](https://medium.com/frontend-mentor/a-complete-guide-to-submitting-solutions-on-frontend-mentor-ac6384162248) for tips on how to do this.

Remember, if you're looking for feedback on your solution, be sure to ask questions when submitting it. The more specific and detailed you are with your questions, the higher the chance you'll get valuable feedback from the community.

## Sharing your solution

There are multiple places you can share your solution:

1. Share your solution page in the **#finished-projects** channel of our [community](https://www.frontendmentor.io/community).
2. Tweet [@frontendmentor](https://twitter.com/frontendmentor) and mention **@frontendmentor**, including the repo and live URLs in the tweet. We'd love to take a look at what you've built and help share it around.
3. Share your solution on other social channels like LinkedIn.
4. Blog about your experience building your project. Writing about your workflow, technical choices, and talking through your code is a brilliant way to reinforce what you've learned. Great platforms to write on are [dev.to](https://dev.to/), [Hashnode](https://hashnode.com/), and [CodeNewbie](https://community.codenewbie.org/).

We provide templates to help you share your solution once you've submitted it on the platform. Please do edit them and include specific questions when you're looking for feedback.

The more specific you are with your questions the more likely it is that another member of the community will give you feedback.

## Got feedback for us?

We love receiving feedback! We're always looking to improve our challenges and our platform. So if you have anything you'd like to mention, please email hi[at]frontendmentor[dot]io.

This challenge is completely free. Please share it with anyone who will find it useful for practice.

**Have fun building!** 🚀
Binary file added assets/images/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/images/illustration-article.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/image-avatar.webp
Binary file not shown.
134 changes: 134 additions & 0 deletions assets/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,134 @@
:root {
--Yellow: hsl(47, 88%, 63%);
--White: hsl(0, 0%, 100%);
--Grey: hsl(0, 0%, 50%);
--Black: hsl(0, 0%, 7%);
}

html,
body {
background-color: var(--Yellow);
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
padding: 0;
margin: 0;
font-family: 'Figtree', sans-serif;
color: var(--Black);
}

.card {
width: 100%;
background-color: var(--White);
max-width: 340px;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
padding: 25px;
border: 1px solid var(--Black);
border-radius: 20px;
gap: 30px;
-webkit-box-shadow: 11px 10px 0px 1px rgba(0, 0, 0, 1);
}

.card-elements {
width: 100%;
display: flex;
flex-direction: column;
justify-content: space-around;
margin: 0;
padding: 0;
}

.card-t {
margin: 0;
}

.card-img {
width: 100%;
padding: 0;
margin: 0;
}

.card-img img {
width: 100%;
border-radius: 15px;
}

.card p {
font-size: 16px;
margin-bottom: 5px;
}

.card-tema {
background-color: var(--Yellow);
padding: 8px;
text-align: center;
font-weight: 700;
border-radius: 5px;
}


.card-title {
font-size: 25px;
cursor: pointer;
}

.card-title:hover {
color: var(--Yellow);
}

.card-description {
color: var(--Grey);
line-height: 25px;
margin: 0;
}

.card-perfil {
margin-top: 20px;
display: flex;
align-items: center;
gap: 20px;
}

.card-perfil img {
width: 32px;
height: 32px;
}

.card-perfil-name {
font-weight: 700;
overflow: hidden;
}




@media screen and (max-width: 555px) {

.card {
transition: 0.1s;
width: 65%;
}

}

@media screen and (max-width: 200px) {

body {
flex-direction: column;
justify-content: flex-start
}
.card {
transition: 0.1s;
width: 100%;
}

p, span, h1 {
font-size: 12px;
}

}
Binary file added design/active-states.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added design/desktop-design.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added design/desktop-preview.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added design/mobile-design.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
37 changes: 37 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Figtree:wght@600;800&family=Roboto:wght@300;900&display=swap"
rel="stylesheet">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/images/favicon-32x32.png">
<link rel="stylesheet" href="./assets/style.css">
<title>Frontend Mentor | Blog preview card</title>

</head>

<body>

<section class="card">
<div class="card-img">
<img src="./assets/images/illustration-article.svg" alt="card-image">
</div>
<div class="card-elements">
<p class="card-t"><span class="card-tema">Learning</span></p>
<p class="card-date">Published 21 Dec 2023</p>
<h1 class="card-title">HTML & CSS foundations</h1>
<p class="card-description"> These languages are the backbone of every website, defining structure, content, and
presentation.</p>
<div class="card-perfil">
<img src="./assets/images/image-avatar.webp" alt="photo-perfil">
<span class="card-perfil-name">Greg Hooper</span>
</div>
</div>
</section>
</body>

</html>

0 comments on commit e57b3de

Please sign in to comment.