CSS file generation
Time for our last section in this chapter: how are the CSS files generated? Try to locate the folder css
under the theme1 pub/static
directory:
Figure 3.19 – Main compiled CSS files
Those are the three main CSS files: print.css
, styles-l.css
, and styles-m.css,
as visible in Figure 3.19. They are created by default in Magento, and they are added by the main frontend theme in this file: default_head_blocks.xml
:
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd"> <head> <css src="css/styles-m.css"/> <css src="css/styles-l.css" media="screen and (min-width: 768px)"/> <css src="css...