You've already forked VixenchromaWebSite
Languages update and some better organization and optimization
This commit is contained in:
192
html/art.html
192
html/art.html
@@ -1,4 +1,4 @@
|
||||
<html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="title" content="VixenChroma">
|
||||
@@ -6,7 +6,8 @@
|
||||
<meta name="keywords" content="alyx le guen, alyx, le guen, line, vixenchroma">
|
||||
|
||||
<link rel="author" href="https://vixenchroma.com"/>
|
||||
<link rel="icon" type="image/svg+xml" href="img/favicon.svg">
|
||||
<link rel="icon" type="image/svg+xml" href="img/favicon.svg">
|
||||
<link rel="stylesheet" href="/vixenchroma.css" />
|
||||
<title>Vixenchroma</title>
|
||||
</head>
|
||||
<body>
|
||||
@@ -17,22 +18,12 @@
|
||||
</div>
|
||||
<div id="flex">
|
||||
<aside id="leftSidebar" style="margin-right: 8px;">
|
||||
<div>
|
||||
<h3>Links</h3>
|
||||
<div class="box">
|
||||
<ul style="padding-left:8px;">
|
||||
<li><a href="https://wiki.vixenchroma.com/public" target="_blank">My Wiki</a></li>
|
||||
<br>
|
||||
<li><a href="https://git.vixenchroma.com/explore/repos" target="_blank">My Gitea</a></li>
|
||||
<br>
|
||||
<li><a href="https://github.com/Alyx-LeGuen" target="_blank">My Github</a></li>
|
||||
<br>
|
||||
<li><a href="https://www.linkedin.com/in/alyx-le-guen-a17581173" target="_blank">My Linkedin</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<h3>Languages</h3>
|
||||
<div class="box">
|
||||
<li><a href="/">En</a> / <a href="/fr/">Fr</a> / <a href="/jp/">Jp</a></li>
|
||||
</div>
|
||||
<div>
|
||||
<h3>Projects</h3>
|
||||
<h3>Navigation</h3>
|
||||
<div class="box">
|
||||
<ul style="padding-left:8px;">
|
||||
<li><a href="/">Home</a></li>
|
||||
@@ -49,6 +40,20 @@
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<h3>Links</h3>
|
||||
<div class="box">
|
||||
<ul style="padding-left:8px;">
|
||||
<li><a href="https://wiki.vixenchroma.com/public" target="_blank">My Wiki</a></li>
|
||||
<br>
|
||||
<li><a href="https://git.vixenchroma.com/explore/repos" target="_blank">My Gitea</a></li>
|
||||
<br>
|
||||
<li><a href="https://github.com/Alyx-LeGuen" target="_blank">My Github</a></li>
|
||||
<br>
|
||||
<li><a href="https://www.linkedin.com/in/alyx-le-guen-a17581173" target="_blank">My Linkedin</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<h3>Cool badge !</h3>
|
||||
<img src="/img/WonderWorld.png" alt="Such a world of Wonder" style="margin-left: auto;margin-right: auto;display: block;"/>
|
||||
@@ -84,166 +89,11 @@
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- THIS IS THE CSS !-->
|
||||
<style>
|
||||
:root {
|
||||
--header-image: url('/img/LINE_TXT_REVERSE.png');
|
||||
--body-bg-image: url('/img/LINE_LOGO_BACKGROUND_WEBSITE.png');
|
||||
|
||||
/* colors */
|
||||
--content: #43256E;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: ADDSBP;
|
||||
src: url('ADDSBP.TTF');
|
||||
}
|
||||
|
||||
body {
|
||||
cursor: url('img/cursor.png'), auto;
|
||||
font-family: 'ADDSBP';
|
||||
margin: 0;
|
||||
background-color: #08031A;
|
||||
background-size: 960px;
|
||||
color: #fceaff;
|
||||
background-image: var(--body-bg-image);
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
#container {
|
||||
max-width: 900px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
#headerArea {
|
||||
text-align: center;
|
||||
height: 40px;
|
||||
}
|
||||
|
||||
#container a {
|
||||
color: #1E74FD;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#header {
|
||||
width: 100%;
|
||||
background-size: 100%;
|
||||
background-color: #241445;
|
||||
height: 400px;
|
||||
background-image: var(--header-image);
|
||||
}
|
||||
|
||||
#flex {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
li a {
|
||||
color: #1E74FD;
|
||||
font-weight: 800;
|
||||
text-decoration: none;
|
||||
cursor: url('img/cursor_click.png'), auto;
|
||||
}
|
||||
|
||||
li a:hover {
|
||||
color: #a49cba;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
aside {
|
||||
background-color: #241445;
|
||||
width: 200px;
|
||||
padding: 20px;
|
||||
font-size: smaller;
|
||||
}
|
||||
|
||||
main {
|
||||
background-color: #43256E;
|
||||
flex: 1;
|
||||
padding: 20px;
|
||||
order: 2;
|
||||
}
|
||||
|
||||
main img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
/* what's this "order" stuff about??
|
||||
allow me to explain!
|
||||
if you're using both sidebars, the "order" value
|
||||
tells the CSS the order in which to display them.
|
||||
left sidebar is 1, content is 2, and right sidebar is 3! */
|
||||
|
||||
*/ #leftSidebar {
|
||||
order: 1;
|
||||
}
|
||||
|
||||
#rightSidebar {
|
||||
order: 3;
|
||||
}
|
||||
|
||||
footer {
|
||||
background-color: #13092D;
|
||||
width: 100%;
|
||||
height: 40px;
|
||||
padding: 8px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
pre {
|
||||
color: #1E74FD;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 25px;
|
||||
}
|
||||
|
||||
strong {
|
||||
color: #1E74FD;
|
||||
}
|
||||
|
||||
.box {
|
||||
background-color: #13092D;
|
||||
border: 1px solid #1E74FD;
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
#topBar {
|
||||
width: 100%;
|
||||
height: 30px;
|
||||
padding: 8px;
|
||||
font-size: smaller;
|
||||
background-color: #13092D;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 800px) {
|
||||
#flex {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
aside {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
main {
|
||||
order: 1;
|
||||
}
|
||||
|
||||
#leftSidebar {
|
||||
order: 2;
|
||||
}
|
||||
|
||||
#rightSidebar {
|
||||
order: 3;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user