initial commit
This commit is contained in:
commit
52c86295e9
24 changed files with 2603 additions and 0 deletions
51
docs/snippets/css/base.css
Normal file
51
docs/snippets/css/base.css
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue