Developer Documentation
Advanced CSS
In the advanced CSS tab you will be able to inject styles to the resume.
Getting Started
This field enables the resume creator to inject any styles into the template.
Since it injects CSS directly into the DOM, there is a special character that makes sure it doesn't lose the section scope:&
To select a specific input field on the section, just target it using its name. e.g if the field is named title, then the selector would be & .title { /* CSS */ }.
There are also a couple of special selectors that can be used to target the section elements:
- & .section-title { }: Targets section title.
- & .section-body { }: Targets the section body which contains all items.
- & .section-item { }: Targets each section item inside the section body.