images and style missing
parent
5592374756
commit
05fb0ffaaa
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
After Width: | Height: | Size: 876 KiB |
Binary file not shown.
After Width: | Height: | Size: 876 KiB |
Binary file not shown.
After Width: | Height: | Size: 876 KiB |
Binary file not shown.
After Width: | Height: | Size: 876 KiB |
Binary file not shown.
After Width: | Height: | Size: 876 KiB |
Binary file not shown.
After Width: | Height: | Size: 876 KiB |
Binary file not shown.
@ -0,0 +1,115 @@
|
|||||||
|
@font-face {
|
||||||
|
font-family: "Lyon";
|
||||||
|
src: url("fonts/LyonJeanTrue.ttf");
|
||||||
|
font-weight: 300;
|
||||||
|
font-style: normal;}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "Favorit";
|
||||||
|
src: url("fonts/Favorit_Regular.ttf");
|
||||||
|
font-weight: 300;
|
||||||
|
font-style: normal;}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "Favorit";
|
||||||
|
src: url("fonts/Favorit_Regular-Italic.ttf");
|
||||||
|
font-weight: 300;
|
||||||
|
font-style: italic;}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "Favorit";
|
||||||
|
src: url("fonts/Favorit_Medium.ttf");
|
||||||
|
font-weight: 400;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "Favorit";
|
||||||
|
src: url("fonts/Favorit_Medium-Italic.ttf");
|
||||||
|
font-weight: 400;
|
||||||
|
font-style: italic;}
|
||||||
|
|
||||||
|
body{
|
||||||
|
background: #cfff00;
|
||||||
|
}
|
||||||
|
|
||||||
|
a{
|
||||||
|
color: #000;
|
||||||
|
text-decoration: none;
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover{
|
||||||
|
color: #cfff00;
|
||||||
|
text-decoration: none;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:visited{
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* HEADER */
|
||||||
|
|
||||||
|
aside{
|
||||||
|
position: fixed;
|
||||||
|
top: 5px;
|
||||||
|
width: calc(100vw - 15px);
|
||||||
|
font-size: 12px;
|
||||||
|
font-family: "Lyon", Arial, Helvetica, sans-serif;
|
||||||
|
font-weight: 300;
|
||||||
|
font-style: normal;
|
||||||
|
z-index: 999;
|
||||||
|
}
|
||||||
|
|
||||||
|
.marquee {
|
||||||
|
position: relative;
|
||||||
|
width: calc(100vw - 15px);
|
||||||
|
max-width: 100%;
|
||||||
|
overflow-x: hidden;
|
||||||
|
height: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.track {
|
||||||
|
position: absolute;
|
||||||
|
white-space: nowrap;
|
||||||
|
will-change: transform;
|
||||||
|
animation: marquee 20s linear infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes marquee {
|
||||||
|
from { transform: translateX(0); }
|
||||||
|
to { transform: translateX(-50%); }
|
||||||
|
}
|
||||||
|
|
||||||
|
/* HOME BUTTON */
|
||||||
|
|
||||||
|
#homebutton{
|
||||||
|
background-color: inherit;
|
||||||
|
text-align:right;
|
||||||
|
color:black;
|
||||||
|
position:absolute;
|
||||||
|
top:0;
|
||||||
|
right:0;
|
||||||
|
margin-right:2%;
|
||||||
|
margin-top:25px;
|
||||||
|
padding:0.3% 0 0 0.3%;
|
||||||
|
font-size:0.6em;
|
||||||
|
z-index:999;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* TYPE STYLE */
|
||||||
|
|
||||||
|
#project-title{
|
||||||
|
font-family: "Lyon", Arial, Helvetica, sans-serif;
|
||||||
|
font-weight: 300;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mytypestyle{
|
||||||
|
font-family: "Favorit", Arial, Helvetica, sans-serif;
|
||||||
|
font-weight: 300;
|
||||||
|
transform: scaleX(0.75);
|
||||||
|
transform-origin: 0 0;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
Loading…
Reference in New Issue