initial commit

This commit is contained in:
Nico 2022-07-16 12:04:51 +02:00
commit 52c86295e9
24 changed files with 2603 additions and 0 deletions

View file

@ -0,0 +1,51 @@
// #region tag
body {}
main {}
ul {}
p {}
span {}
// #endregion tag
// #region class
.class-personnelle {}
.container {}
// #endregion class
// #region attr
a[href] {}
a[href="/"] {}
// #endregion attr
// #region chain
ul, ol {}
ul.class-personnelle {}
ul > li {}
.class-personnelle img {}
* + * {}
// #endregion chain
// #region property
body {
margin-top: -40px;
padding: 0 20px;
overflow-x: hidden;
font-family: Arial, sans-serif;
font-weight: 400;
font-size: 2rem;
line-height: 1.4;
color: var(--dark);
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: var(--blue);
font-weight: 500;
margin: 0;
padding: 0;
line-height: 1.2;
}
// #endregion property

View file

@ -0,0 +1,88 @@
// #region base
<!DOCTYPE html>
<html lang="fr" dir="ltr">
<head>
<meta charset="UTF-8" />
<title>Document</title>
</head>
<body>
[Contenu du site]
</body>
</html>
// #endregion base
// #region structure
<!DOCTYPE html>
<html lang="fr" dir="ltr">
<head>
<meta charset="UTF-8" />
<title>Document</title>
</head>
<body>
<header>
<nav></nav>
</header>
<main>
<section>
<h1>Titre principal</h1>
<article>
<header>
<h2>Titre secondaire</h2>
</header>
</article>
</section>
</main>
<aside>
<h2></h2>
</aside>
<footer></footer>
</body>
</html>
// #endregion structure
// #region full
<!DOCTYPE html>
<html lang="fr" dir="ltr">
<body>
<header>
<nav>
<a href="/">accueil</a>
</nav>
</header>
<main>
<section>
<h1>Titre principal</h1>
<article>
<header>
<h2>Titre secondaire</h2>
</header>
<p>Lorem <strong>ipsum</strong> dolor sit amet.</p>
</article>
</section>
</main>
<aside>
<h2></h2>
<ul>
<li>item 1</li>
<li>item 2</li>
</ul>
</aside>
<footer></footer>
</body>
</html>
// #endregion full