Seems like the CSS link is wrong
Closed this issue · 3 comments
ElTrasho3000 commented
I wondered why my changes in style.css didn't take effect. Changing the link in index.html did the job.
So instead of this:
<link rel="stylesheet" type="text/css" href="style.css"/>
that:
<link rel="stylesheet" type="text/css" href="./assets/style/style.css"/>
But overall a great project, thank you for making the effort!
ElTrasho3000 commented
Also fonts in style.css need to be addressed llike this with the current directory tree:
@font-face{
font-family: 'Droid Serif';
src: url('../fonts/DroidSerif.ttf');
}
@font-face{
font-family: 'Yanone Kaffeesatz';
src: url('../fonts/YanoneKaffeesatz.otf');
}
@font-face{
font-family: 'Ubuntu Mono';
src: url('../fonts/UbuntuMono.ttf');
}
benstigsen commented
Yes, thank you very much for pointing it out!
I didn't have a lot of experience when I first created this project. I'd like to create something similar to this, but with a way simpler and smaller codebase.
ElTrasho3000 commented
Sounds good to me. I don't have much experience with JS yet. But if you wan't to collaborate on this, let me know.
I'm not entirely happy with the available md to presentation tools and already thought about writing my own.