Commit 8d6ca2c5 authored by Corentin Bettiol's avatar Corentin Bettiol 💻
Browse files

change design (width/color), add licence, update about page

parent 88210ee6
Loading
Loading
Loading
Loading
+18 −10
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@
	margin: auto;
	font-size: 1.5em;
	font-family: ubuntulight;
	background-color: #e3e3e3;
	background-color: #ddd;
}

#header{
@@ -18,12 +18,19 @@
	align-items: center;
	font-family: ubuntumono;
	background-color: #f0f0f0;
	border-bottom: 5px solid #ccc;
	border-bottom: 5px solid #aaa;
	justify-content: space-between;
}

article p, #pageTitle, article h3, article ul, article form, #listAdmin, .input, article pre, article h4{
	max-width: 1500px;
/* le gros tweak moche pour la taille des billets de blog / des projets */
article p, #pageTitle, article h3, article ul, #listAdmin, article pre, article h4{
	width: 90%;
	max-width: 1000px;
	margin: 30px auto;
}

.input{
	width: 90%;
	margin: 30px auto;
}

@@ -91,8 +98,7 @@ h3 a:hover{
	padding: 7px;
	margin: 10px;
	text-decoration: none;
	background-color: #d9d9d9;
	border-bottom: 0px solid #ccc;
	border-bottom: 0px solid #888;
	transition: color 0.2s, background-color 0.2s, padding 0.1s, border-bottom 0.1s;
}

@@ -109,12 +115,12 @@ article{
	padding: 5px 15px;
	overflow-wrap: anywhere;
	background-color: #f0f0f0;
	border-bottom: 3px solid #ccc;
	border-bottom: 3px solid #aaa;
}

#listMenu .selected{
	padding-bottom: 2px;
	border-bottom: 5px solid #ccc;
	border-bottom: 5px solid #aaa;
}

article .postInfos{
@@ -142,6 +148,8 @@ a:hover{
#editContent{
	margin-top: 5px;
	min-height: 1em;
	max-height: 10em;
	overflow: scroll;
	white-space: pre-wrap;
	display: inline-block;
}
@@ -157,7 +165,7 @@ input, textarea, .wysiwyg{
	box-sizing: border-box;
	background-color: white;
	border-left: 0px solid #ccc;
	border-bottom: 3px solid #ccc;
	border-bottom: 3px solid #aaa;
	transition: border-left 0.05s, padding-left 0.05s;
}

@@ -506,7 +514,7 @@ Media Queries
	}

	#toggle:checked ~ #listMenu{
		border-bottom: 5px solid #ccc;
		border-bottom: 5px solid #aaa;
		transition: border-bottom 0.3s;
	}

rss/blog.xml

0 → 100644
+0 −0

Empty file added.

+0 −11
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
				<rss version="2.0">
					<channel>
						<title>l3m website - projets</title>
						<description>Site perso de Corentin Bettiol.</description>
						<lastBuildDate>03/04/2019 à 18:23</lastBuildDate>
						<link>https://l3m.in</link><item>
							<title>dede</title>
							<description>aaa</description>
							<link>https://l3m.in/dede</link>
						</item></channel></rss>
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
			color: #1f1f2e;
		}
		#listMenu a{
			background-color: #e3e3e3;
			background-color: #ddd;
			padding: 7px;
		}
		@media all and (max-width: 700px){
+18 −1
Original line number Diff line number Diff line
@@ -16,7 +16,24 @@
			Il me sert de point de centralisation de plusieurs de mes projets, et me permet de faire quelques tests pas forcément référencés.
		</p>
		<p>
			Il en est à sa cinquième refonte.
			Il en est à sa cinquième refonte, et son code source est disponible <a href="https://git.bitmycode.com/sodimel/l3m-website">ici</a> sous la licence <a href="http://www.wtfpl.net/">WTFPL</a>.
		</p>
	</article>

	<article>
		<h3>À propos du contenu</h3>

		<p>
			Sauf mention contraire, tout le contenu que je poste sur ce site est sous licence attribution (<a href="https://creativecommons.org/licenses/by/3.0/fr/">CC BY 3.0 FR</a>).
		</p>
		<p>
			Il est possible que je cite du contenu disponible sur d'autres sites et que je le copie sur mon serveur pour éviter que certains liens puissent se tranformer en références mortes.
		</p>
		<p>
			Si vous trouvez du contenu sur ce site vous appartenant et que vous voulez que je le retire, merci de me contacter à l'adresse suivante : corentin, signe arobase, <a href="https://244466666.xyz">ce nom de domaine</a>.
		</p>
		<p>
			Merci de ne pas effectuer de démarchage sur cette adresse mail.
		</p>
	</article>

Loading