CRM Presentation 1
CRM Presentation 1
M. Chanakya Varma
VU22CSCI0200029
Introduction
Code:
< style >
. my - custom - class {
background - color : # f2f2f2 ;
color : #333;
}
</ style >
Usage:
Custom CSS can be embedded in the HTML of a widget or
portal page.
Apply CSS classes to elements for consistent styling.
Using UI Policies
HTML Code:
< div class = " widget - container " >
< h2 class = " widget - title " > Custom Widget </ h2 >
<p class = " widget - content " > This is a widget . <
/p>
</ div >
Widget CSS Example
CSS Code:
< style >
. widget - container {
background - color : # e0e0e0 ;
padding : 20 px ;
border - radius : 5 px ;
}
. widget - title {
font - size : 24 px ;
color : #4 a4a4a ;
}
</ style >
Conclusion