Skip to content

Commit 5eb2827

Browse files
authored
Merge pull request #1 from CodelyTV/b2
Add B2 content
2 parents 7a04c85 + a1bde02 commit 5eb2827

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+14030
-0
lines changed

43-responsive-layout/.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
css
3+
dist
+9
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+
}

43-responsive-layout/index.html

+100
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
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+
<header>
15+
<h1>☕ Café con Codely News</h1>
16+
</header>
17+
<main class="container">
18+
<section class="menu">
19+
<ul>
20+
<li>
21+
<a target="_blank" href="https://codely.tv/">Codely TV</a>
22+
</li>
23+
<li>
24+
<a target="_blank" href="https://twitter.com/codelytv">Twitter</a>
25+
</li>
26+
<li>
27+
<a target="_blank" href="https://www.youtube.com/channel/UC9IKtxn9AIGelnYmwYr0Lxw">Youtube</a>
28+
</li>
29+
<li>
30+
<a target="_blank" href="https://www.twitch.tv/codelytv">Twitch</a>
31+
</li>
32+
</ul>
33+
</section>
34+
<div class="gallery">
35+
<article class="card">
36+
<div class="card__img">
37+
<img alt="Captura del programa GameMaker" src="https://i.blogs.es/a52d06/gamemaker/1366_2000.jpg" />
38+
</div>
39+
40+
<h4 class="card__title">
41+
<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"
42+
target="_blank">
43+
Actualización en GameMaker
44+
</a>
45+
</h4>
46+
<p>
47+
El motor de creación de videojuegos GameMaker ofrece una versión gratuita sin límite de tiempo y anuncia su
48+
llegada a Linux
49+
</p>
50+
</article>
51+
<article class="card">
52+
<div class="card__img">
53+
<img alt="Captura de un tema de VSCode con colores ocuros" src="https://i.redd.it/unyodjbxmqs21.png" />
54+
</div>
55+
56+
<h4 class="card__title">
57+
<a href="https://www.reddit.com/r/vscode/comments/be2qr3/for_those_of_you_who_didnt_like_my_light_theme/"
58+
target="_blank">
59+
Nuevo tema oscuro de VS Code
60+
</a>
61+
</h4>
62+
<p>El nuevo tema que le gusta mucho a Rafa.</p>
63+
</article>
64+
<article class="card">
65+
<div class="card__img">
66+
<img alt="Captura de la home page de Babel"
67+
src="https://pbs.twimg.com/profile_banners/2958823554/1491134069/1500x500" />
68+
</div>
69+
70+
<h4 class="card__title">
71+
<a href="https://babeljs.io/blog/2021/07/26/7.15.0" target="_blank">
72+
Nueva versión de Babel: 7.15.0
73+
</a>
74+
</h4>
75+
<p>
76+
La nueva versión incluye cosas molonas como "top level await", "TypeScript const enums supports" y "Hash-style
77+
pipeline operator".
78+
</p>
79+
</article>
80+
<article class="card">
81+
<div class="card__img">
82+
<img alt="Imagen del nuevo DNI 4.0" src="https://i.blogs.es/5d012b/dni-4.0/1366_2000.jpg" />
83+
</div>
84+
85+
<h4 class="card__title">
86+
<a href="https://www.xataka.com/empresas-y-economia/dni-4-0-entra-hoy-vigor-esta-aqui-nuevo-formato-europeo-que-se-integrara-movil"
87+
target="_blank">
88+
Llega el DNI 4.0
89+
</a>
90+
</h4>
91+
<p>
92+
93+
El DNI 4.0 entra hoy en vigor: ya está aquí el nuevo formato europeo que se integrará en el móvil
94+
</p>
95+
</article>
96+
</div>
97+
</main>
98+
</body>
99+
100+
</html>

0 commit comments

Comments
 (0)