Problems importing external CSS files on Codepen.io

I like working with Codepen and I'm trying to import a css file from Pastebin .

Here is the link to my external file hosted on Pastebin:

http://pastebin.com/raw.php?i=mj9dmzZw

and inside this file I refer to my actual font files.

I'm not sure what I'm doing wrong. Can someone point me in the right direction or let me know if possible.

Here is the real code. http://codepen.io/ryanjgill/pen/CLitH

Inside the CSS section, I commented on the style I'm trying to include in an external CSS file. If you uncomment the style for the icons, you will see the icons in the Type column.

I tried linking a fly in the settings of the css section which is built into codepen. And using "@include url (' http://pastebin.com/raw.php?i=mj9dmzZw ')" inside css.

+4
source share
1 answer

Well, on the CodePen page there is a small letter "g" to the right of the css input field. You can import your .css there, I think.

If you need the .css extension for your import file, just create a new .css file and @import your Pastebin css from your new file.css

0
source

All Articles