The purpose of this style guide is to help you understand how to manage this project in style. It lays out all the elements, components, tools, and resources used to develop it. Each section begins with a tutorial to reinforce you further. If you have any questions, please reach out hello@protocore.co
This project comes with a 'global' symbol embed block. This embed block goes on every page and holds CSS styles that are used everywhere in the project. Styles are added to an embed so we can see the CSS inside the Webflow Designer. Feel free to update and add to it.
The Designer has many keyboard shortcuts to help you speed up your design workflow. The quickest way to see the list of all shortcuts in the Designer is pressing Shift + /. You can also access this list from the help menu on the bottom left of the Designer.
Everything in this project is measured using REM. The base font size is 1 rem. When you need to convert units such as pixels to REM, simply select your input field and type 14/16rem and it automatically calculates the difference and converts. You can do any other form of calculation, as well.
Once you're finished editing the project, open the Style Manager and click Clean Up to remove unused classes. Then open the Interactions panel and click Clean Up to remove unused interactions. Finally, open the Assets Panel, expand it from the top right, click Select All and Delete. Webflow will automatically dispose of any assets you haven't used. The rest will show up again once you publish your project and refresh the page.
All the colors used in this project are saved as global swatches in the color picker. If you use a new color, please remember to save it as a swatch. Text colors are also saved as individual classes such as "text-color-grey" so they can be globally managed.
text-size-normal-gold
text-size-caps-lightgrey
text-size-caps-gold
text-size-small-lightgrey
The following snippets were used in this project. There are three ways to add custom code to this project. You can embed it directly into your page, insert it in your page settings, or host it on another server and then embed it as a script file. You can also upload the script file within your project as an asset and embed it.
<script>
const year = new Date().getFullYear();
$('.year').text(year);
</script>
Your Code