I am using Odoo v10.I have created a custom class and added css property for that class and put that in <style> tag , but that css property is not applied if the module is not installed, After successful installation of module css style work. What to do if I want to use external CSS style before module install.
<html>
<head>
</head>
<body>
<style> // not work if module is not install
.text_custom{
color:#875A7B;
font-size:18px;
}
</style>
<section class="oe_container oe_dark">
<div class="oe_row">
<h2 class="oe_slogan" style="color:#875A7B;">Title</h2> // inline css works well
<h3 class="text_custom">Subtitle</h3>
</div>
</section>
</body>
</html>
Anyone help me, how to add external css file/css style in index.html ?