Skip to content

Commit b67bc38

Browse files
committed
lesson 4-2: alignment start
1 parent 3edba40 commit b67bc38

File tree

9 files changed

+2576
-0
lines changed

9 files changed

+2576
-0
lines changed

42-justify-content-values/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
css
3+
dist
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
2+
{
3+
"plugins": ["stylelint-scss"],
4+
"extends": ["stylelint-config-standard"],
5+
"rules": {
6+
"at-rule-no-unknown": null,
7+
"scss/at-rule-no-unknown": true
8+
}
9+
}

42-justify-content-values/index.html

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<!DOCTYPE html>
2+
<html lang="es">
3+
4+
<head>
5+
<meta charset="utf-8" />
6+
<meta name="referrer" content="no-referrer-when-downgrade" />
7+
<title>Café con Codely News</title>
8+
<meta name="description" content="Café con Codely news" />
9+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
10+
<link href="css/index.css" rel="stylesheet" type="text/css" media="all" />
11+
</head>
12+
13+
<body>
14+
<main class="container">
15+
<h1>☕ Café con Codely News</h1>
16+
<div class="gallery">
17+
<article class="card">
18+
<div class="card__img">
19+
<img alt="Captura del programa GameMaker" src="https://i.blogs.es/a52d06/gamemaker/1366_2000.jpg" />
20+
</div>
21+
22+
<h4 class="card__title">
23+
<a href="https://www.genbeta.com/desarrollo/motor-creacion-videojuegos-gamemaker-ofrece-version-gratuita-limite-tiempo-anuncia-su-llegada-a-linux?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+genbeta+%28Genbeta%29"
24+
target="_blank">
25+
Actualización en GameMaker
26+
</a>
27+
</h4>
28+
<p>
29+
El motor de creación de videojuegos GameMaker ofrece una versión gratuita sin límite de tiempo y anuncia su
30+
llegada a Linux
31+
</p>
32+
</article>
33+
<article class="card">
34+
<div class="card__img">
35+
<img alt="Captura de un tema de VSCode con colores ocuros" src="https://i.redd.it/unyodjbxmqs21.png" />
36+
</div>
37+
38+
<h4 class="card__title">
39+
<a href="https://www.reddit.com/r/vscode/comments/be2qr3/for_those_of_you_who_didnt_like_my_light_theme/"
40+
target="_blank">
41+
Nuevo tema oscuro de VS Code
42+
</a>
43+
</h4>
44+
<p>El nuevo tema que le gusta mucho a Rafa.</p>
45+
</article>
46+
</div>
47+
</main>
48+
</body>
49+
50+
</html>

0 commit comments

Comments
 (0)