You are probably using the http:// link for the stylesheet on the https:// website.
Protected websites are not allowed to mix protocols. Everything must be built in from a secure server. Browsers will ignore / block HTTP resources on HTTPS pages (with varying degrees of severity).
The reason for this blocking is that unreliable HTTP resources, such as style sheets and scripts, can still be modified by an attacker and are used to spoof / capture protected parts of the site.
If the stylesheet is filed from your server, omit the protocol + host part of the URL, i.e. instead of http://example.com/style.css use /style.css as the URL, so it will work on both HTTP and HTTPS. You can also use relative protocol urls .
If you must have one full URL, use only https://โฆ URLs.
source share