Working generator & added whole site
237
resources/css/style.css
Normal file
@@ -0,0 +1,237 @@
|
||||
html, body {
|
||||
line-height: 1.6;
|
||||
font-size: 17px;
|
||||
font-family: sans-serif;
|
||||
color:#444;
|
||||
background-color: #EEEEEE;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-image: url(/img/background.jpg);
|
||||
}
|
||||
|
||||
/** custom landing **/
|
||||
|
||||
#logo {
|
||||
width: 70%;
|
||||
}
|
||||
|
||||
.navbar a {
|
||||
color: rgb(255, 255, 255);
|
||||
float: left;
|
||||
padding: 5px 15px;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
font-size: 17px;
|
||||
/*border-bottom: 6px solid orangered;*/
|
||||
}
|
||||
|
||||
.navbar a:hover {
|
||||
color:#309e85;
|
||||
}
|
||||
|
||||
.landing {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
/** website **/
|
||||
|
||||
.avatar {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
margin: 70px auto 35px;
|
||||
border-radius: 50%;
|
||||
background-repeat: no-repeat;
|
||||
background-size: 100px 100px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.navbarButton {
|
||||
font-size:30px;
|
||||
cursor:pointer;
|
||||
position:fixed;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.flexContainer {
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
justify-content: flex-start;
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
footer {
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
height: 50px;
|
||||
color: white;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.footer {
|
||||
color: #a5adb7;
|
||||
font-size: 12px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.footer:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.menuContainer {
|
||||
flex-grow: 1;
|
||||
width: 120px;
|
||||
max-width: 120px;
|
||||
height: 100%;
|
||||
background-color: rgb(34, 34, 34);
|
||||
}
|
||||
|
||||
.menuContainer ul {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.menuContainer a {
|
||||
padding: 0px 5px 0px 5px;
|
||||
text-decoration: none;
|
||||
font-size: 25px;
|
||||
color: #888;
|
||||
display: block;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
.menuContainer a:hover {
|
||||
color: #f1f1f1;
|
||||
}
|
||||
|
||||
.menuContainer li {
|
||||
text-align: center;
|
||||
border-bottom: 1px solid #555;
|
||||
}
|
||||
|
||||
.menuContainer li:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.submenuContainer {
|
||||
flex-grow: 1;
|
||||
width: 400px;
|
||||
max-width: 400px;
|
||||
height: 100%;
|
||||
overflow-y: scroll;
|
||||
background-color: rgb(219, 219, 219);
|
||||
}
|
||||
|
||||
.submenuContainer h1 {
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.submenuContainer a {
|
||||
color: #000;
|
||||
font-size: 15px;
|
||||
text-decoration: none;
|
||||
display: block;
|
||||
height: 30px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.submenuContainer a::before {
|
||||
content: "❯";
|
||||
position: absolute;
|
||||
top: 4px;
|
||||
left: 12px;
|
||||
z-index: 1;
|
||||
font-size: 13px;
|
||||
color:#309e85;
|
||||
}
|
||||
|
||||
.submenuContainer a:hover {
|
||||
background-color: grey;
|
||||
}
|
||||
|
||||
.postTitle {
|
||||
position: absolute;
|
||||
margin: 5px 0;
|
||||
padding-left: 32px;
|
||||
font-size: 16px;
|
||||
line-height: 22px;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
color: #55606f;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.postDate {
|
||||
font-size: 12px;
|
||||
margin: 5px 0px;
|
||||
padding-right: 3px;
|
||||
color: #9aa4af;
|
||||
float: right;
|
||||
}
|
||||
|
||||
.contentContainer {
|
||||
flex-grow: 100;
|
||||
height: 100%;
|
||||
overflow-y: scroll;
|
||||
transition: 0.5s;
|
||||
text-align: justify;
|
||||
background-color: rgba(57, 57, 57, 0.649);
|
||||
}
|
||||
|
||||
.contentContainer article{
|
||||
overflow-y: auto;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
box-sizing: border-box;
|
||||
max-width: 900px;
|
||||
padding: 20px;
|
||||
background-color: rgb(219, 219, 219);
|
||||
}
|
||||
|
||||
.contentContainer img{
|
||||
width: 60%;
|
||||
display:block;
|
||||
margin:auto;
|
||||
}
|
||||
|
||||
.contentContainer blockquote{
|
||||
font-size: 15px;
|
||||
font-family: monospace;
|
||||
background-color: rgba(197, 197, 197, 0.5);
|
||||
border-radius: 2px;
|
||||
border: 1px solid rgba(197, 197, 197, 0.5);
|
||||
padding-left: 10px;
|
||||
margin: 0 10px 0 10px;
|
||||
}
|
||||
|
||||
.contentContainer blockquote p{
|
||||
margin: 5px 0 5px 0;
|
||||
}
|
||||
|
||||
.contentContainer pre{
|
||||
font-size: 15px;
|
||||
font-family: monospace;
|
||||
background-color: rgba(197, 197, 197, 0.5);
|
||||
border-radius: 2px;
|
||||
border: 1px solid rgba(197, 197, 197, 0.5);
|
||||
padding-left: 10px;
|
||||
margin: 0 10px 0 10px;
|
||||
overflow: scroll;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1000px) {
|
||||
.menuContainer { width:100%; height: auto; max-width: 100%; }
|
||||
.submenuContainer { width:100%; height: auto; max-width: 100%; max-height: 500px; }
|
||||
.contentContainer { width:100%; height: auto; max-width: 100%; max-height: auto; overflow-y: visible; }
|
||||
.contentContainer article { width:100%; height: auto; max-width: 100%; overflow-y: visible; }
|
||||
.sidebarnav a { font-size: 30px; }
|
||||
}
|
||||
BIN
resources/img/artworks/crown.jpg
Normal file
|
After Width: | Height: | Size: 61 KiB |
BIN
resources/img/artworks/face10.jpg
Normal file
|
After Width: | Height: | Size: 51 KiB |
BIN
resources/img/artworks/face11.jpg
Normal file
|
After Width: | Height: | Size: 80 KiB |
BIN
resources/img/artworks/face12.jpg
Normal file
|
After Width: | Height: | Size: 71 KiB |
BIN
resources/img/artworks/face13.jpg
Normal file
|
After Width: | Height: | Size: 69 KiB |
BIN
resources/img/artworks/face14.jpg
Normal file
|
After Width: | Height: | Size: 67 KiB |
BIN
resources/img/artworks/face14full.jpg
Normal file
|
After Width: | Height: | Size: 47 KiB |
BIN
resources/img/artworks/full1.jpg
Normal file
|
After Width: | Height: | Size: 78 KiB |
BIN
resources/img/artworks/full2.jpg
Normal file
|
After Width: | Height: | Size: 100 KiB |
BIN
resources/img/artworks/roomBlackChair.jpg
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
resources/img/artworks/roomOrangeChair2.jpg
Normal file
|
After Width: | Height: | Size: 79 KiB |
BIN
resources/img/artworks/roomWhiteChair.jpg
Normal file
|
After Width: | Height: | Size: 38 KiB |
BIN
resources/img/avatar.png
Normal file
|
After Width: | Height: | Size: 560 KiB |
BIN
resources/img/avatar2.png
Normal file
|
After Width: | Height: | Size: 794 KiB |
BIN
resources/img/avatar_animated1.webm
Normal file
BIN
resources/img/avatar_animated2.webm
Normal file
BIN
resources/img/background.jpg
Executable file
|
After Width: | Height: | Size: 518 KiB |
BIN
resources/img/icon.png
Executable file
|
After Width: | Height: | Size: 120 KiB |
BIN
resources/img/posts/sculpt1.jpg
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
resources/img/posts/sculpt10.jpg
Normal file
|
After Width: | Height: | Size: 65 KiB |
BIN
resources/img/posts/sculpt10_nodes.png
Normal file
|
After Width: | Height: | Size: 132 KiB |
BIN
resources/img/posts/sculpt10_render.jpg
Normal file
|
After Width: | Height: | Size: 51 KiB |
BIN
resources/img/posts/sculpt2.jpg
Normal file
|
After Width: | Height: | Size: 54 KiB |
BIN
resources/img/posts/sculpt3b.jpg
Normal file
|
After Width: | Height: | Size: 56 KiB |
BIN
resources/img/posts/sculpt3f.jpg
Normal file
|
After Width: | Height: | Size: 57 KiB |
BIN
resources/img/posts/sculpt6.jpg
Normal file
|
After Width: | Height: | Size: 79 KiB |
BIN
resources/img/posts/sculpt7.jpg
Normal file
|
After Width: | Height: | Size: 55 KiB |
BIN
resources/img/posts/sculpt8.jpg
Normal file
|
After Width: | Height: | Size: 47 KiB |
BIN
resources/img/projets/c32_logo.png
Normal file
|
After Width: | Height: | Size: 56 KiB |
BIN
resources/img/projets/c32_node_logo.png
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
resources/img/projets/c32b_logo.png
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
resources/img/projets/etienne_logo.png
Normal file
|
After Width: | Height: | Size: 105 KiB |
BIN
resources/img/projets/initial2D_logo.png
Normal file
|
After Width: | Height: | Size: 139 KiB |
BIN
resources/img/projets/lilstreamy_logo.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
resources/img/projets/mozen_logo.png
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
resources/img/projets/oozik_logo.png
Normal file
|
After Width: | Height: | Size: 74 KiB |
BIN
resources/img/projets/tronio_logo.png
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
resources/img/projets/voozik_logo.png
Normal file
|
After Width: | Height: | Size: 26 KiB |