Added reset.css

Signed-off-by: Louis Vallat <louis@louis-vallat.xyz>
This commit is contained in:
Louis Vallat 2021-03-08 11:08:47 +01:00
parent b1483c573c
commit 9ed26bd29b
2 changed files with 65 additions and 3 deletions

View File

@ -1,24 +1,38 @@
<!DOCTYPE html> <!DOCTYPE html>
<!--
PAGE CODED BY :
__ _____ __ __ ______ ____ __ __ ______ __ __ ______ ______
/\ \ /\ __`\/\ \/\ \/\__ _\/\ _`\ /\ \/\ \/\ _ \/\ \ /\ \ /\ _ \/\__ _\
\ \ \ \ \ \/\ \ \ \ \ \/_/\ \/\ \,\L\_\ \ \ \ \ \ \ \L\ \ \ \ \ \ \ \ \ \L\ \/_/\ \/
\ \ \ __\ \ \ \ \ \ \ \ \ \ \ \ \/_\__ \ \ \ \ \ \ \ __ \ \ \ __\ \ \ __\ \ __ \ \ \ \
\ \ \L\ \\ \ \_\ \ \ \_\ \ \_\ \__/\ \L\ \ \ \ \_/ \ \ \/\ \ \ \L\ \\ \ \L\ \\ \ \/\ \ \ \ \
\ \____/ \ \_____\ \_____\/\_____\ `\____\ \ `\___/\ \_\ \_\ \____/ \ \____/ \ \_\ \_\ \ \_\
\/___/ \/_____/\/_____/\/_____/\/_____/ `\/__/ \/_/\/_/\/___/ \/___/ \/_/\/_/ \/_/
-->
<html lang="fr"> <html lang="fr">
<head> <head>
<!-- SEO -->
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Ceci est le blog de Louis Vallat."> <meta name="description" content="Ceci est le blog de Louis Vallat.">
<!--meta name="image" content="https://louis-vallat.xyz/assets/images/icon.jpg"!--> <!--meta name="image" content="https://louis-vallat.xyz/assets/images/icon.jpg"-->
<meta name="twitter:card" content="summary"> <meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Le blog de Louis Vallat"> <meta name="twitter:title" content="Le blog de Louis Vallat">
<meta name="twitter:description" content="Ceci est le blog de Louis Vallat."> <meta name="twitter:description" content="Ceci est le blog de Louis Vallat.">
<meta name="twitter:site" content="@VallatLouis"> <meta name="twitter:site" content="@VallatLouis">
<meta name="twitter:creator" content="@VallatLouis"> <meta name="twitter:creator" content="@VallatLouis">
<!--meta name="twitter:image:src" content="https://louis-vallat.xyz/assets/images/icon.jpg"!--> <!--meta name="twitter:image:src" content="https://louis-vallat.xyz/assets/images/icon.jpg"-->
<meta name="og:title" content="Le blog de Louis Vallat"> <meta name="og:title" content="Le blog de Louis Vallat">
<meta name="og:description" content="Ceci est le blog de Louis Vallat."> <meta name="og:description" content="Ceci est le blog de Louis Vallat.">
<!--meta name="og:image" content="https://louis-vallat.xyz/assets/images/icon.jpg"!--> <!--meta name="og:image" content="https://louis-vallat.xyz/assets/images/icon.jpg"-->
<meta name="og:url" content="https://blog.louis-vallat.xyz/"> <meta name="og:url" content="https://blog.louis-vallat.xyz/">
<meta name="og:site_name" content="Le blog de Louis Vallat"> <meta name="og:site_name" content="Le blog de Louis Vallat">
<meta name="og:locale" content="fr_FR"> <meta name="og:locale" content="fr_FR">
<meta name="og:type" content="website"> <meta name="og:type" content="website">
<meta charset="UTF-8"> <meta charset="UTF-8">
<!-- Reset CSS -->
<link rel="stylesheet" href="reset.css">
<!-- Main CSS -->
<link rel="stylesheet" href="style.css"> <link rel="stylesheet" href="style.css">
<title></title> <title></title>
</head> </head>

48
src/reset.css Normal file
View File

@ -0,0 +1,48 @@
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}