From 1d91319dae6cd95b45dd07c1b6ac65cc4cee2dd5 Mon Sep 17 00:00:00 2001 From: Vincent Finance Date: Fri, 13 Nov 2020 18:01:34 +0100 Subject: [PATCH] =?UTF-8?q?Publication=20de=20la=20page=20web=20et=20du=20?= =?UTF-8?q?fichier=20CSS=20+=20Mise=20=C3=A0=20jour=20du=20README?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Please enter the commit message for your changes. Lines starting with '#' will be ignored, and an empty message aborts the commit. On branch master Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits) Changes to be committed: modified: README.md new file: index.html new file: style.css --- README.md | 16 +++++++++++++++- index.html | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ style.css | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 116 insertions(+), 1 deletion(-) create mode 100644 index.html create mode 100644 style.css diff --git a/README.md b/README.md index f179ab6..da83e0e 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,17 @@ # startpage -Une page d'accueil simple et contenant l'essentiel de ce qu'il me faut au quotidien / A simple start page which have all of the essential tools I use everyday \ No newline at end of file +## Français + +Une page d'accueil simple et contenant l'essentiel de ce qu'il me faut au quotidien. +Elle est hébergée sur mon serveur local sous OpenBSD et me sert à ne pas aller directement sur le web pour chercher quelque choe et à changer mes habitudes. + + * Inspiré par le projet suivant : [Startpage](https://github.com/dylanaraps/startpage) + * Licence : MIT + +## English + +A simple start page which have all of the essential tools I use everyday. +It is hosted on my local OpenBSD server and its main goal is to give me what I need without doing a web search (in order to change my habits). + + * Inspired by the following project : [Startpage](https://github.com/dylanaraps/startpage) + * License : MIT diff --git a/index.html b/index.html new file mode 100644 index 0000000..c75e57e --- /dev/null +++ b/index.html @@ -0,0 +1,54 @@ + + + + + Par où commencer ? + + + + + +
+

Par où commencer ?

+

Parce que chaque jour commence par un bon café !

+
+
+ + + + + + +
+ + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..2efc9f8 --- /dev/null +++ b/style.css @@ -0,0 +1,47 @@ +@charset "UTF-8"; +/* Let's make a nice body for the page */ +body { + font-family: sans-serif; + text-align: center; + font-size: medium; + color: #e5e9f0; + margin: 0; + background: rgb(36,36,36); +} +/* No decoration for the links */ +a { + text-decoration: none; + font-weight: bold; +} +a:link, +a:visited { + color: #d0d0d0; +} +a:hover { + color: #ff6e35; +} +/* Allow us to display lists as in a grid */ +ul { + list-style: none; + margin: 2%; + padding: 0; + display: inline-table; +} +li { + margin: 1% 0; +} +/* Let's make a nice header for the page */ +header { + padding: 5px 0; + background: rgb(66, 66, 66); +} +main { + width: 70%; + margin: auto; +} +/* Responsive mode */ +@media (max-width: 1060px) { + body { + font-size: small; + } +} \ No newline at end of file