Markup cheat sheet π
We use our own markup based on Atomic CSS, to tell Sketch and Lunacy what it needs to tell Marcode of how things are positioned and what they are. Here are a few guidelines on how to write the markup inside of your .sketch file, and a few nifty shortcuts!
Use our π€πSketch assistant, a helping hand for remembering all those important framework rules π Works with both Sketch2React and Marcode β
Pages & Artboards
The page (in Sketch or Icons8 Lunacy) where you have your designs that you want to render in our app must be named App. The first artboard you want to render needs to be named Start or else it will not work. Please study our demo files when in confusion, they will teach you a lot.
Images
We support PNG, JPG and SVG's.
How to export to SVG
Group your vectors, make sure not to use special characters
Make exportable and select SVG from the dropdown in Sketch
Voila! Your SVG asset should now be visible in our code app
If you make changes to your vectors you will need to re-link the .sketch file in Marcode, use our handy shortcut βR
We also support
{image} = responsive 100%
{image-fixed} = fixed size according to what you have set up in Sketch or Lunacy
πβοΈProTip: Use icon fonts for your icons, that way you can embed the icon library as a {externalasset.css} so no need to export them one by one, and re-import them.
Example
{image-fixed} [mb10] - beard dude icon@2x
This means that the beard dude has a fixed image size and a margin bottom of 10 pixels. Also as you see in the given example you can add whatever text you want after the [...] - sweeeeet π©π¦
ProTip! Make sure to export/reimport your assets at the @2x resolution so that you don't get fuzzy edges on retina resolution screens. You can use the very handy Make Exportable function in Sketch app and just drag/drop the bitmap back to your artboard once you have enabled it.
Fonts & Icons
We support linking web fonts directly from inside of Sketch! In our demos we use Google fonts but it should work exactly like this for other type platforms that uses similar methods.
We also support popular icon fonts such as Ion Icons, Material Icons, Fontawesome. You can even create your own icon set with services like Fontastic.
πβοΈProTip: Use this awesome Sketch plugin called Icon Font for installing icon bundles.
Example
In Sketch use the Text tool (β+T) and write this in the layers panel:
Inside the text node copy/paste the correct url that youβre given by your font provider for the font you use in your document. In this case we use both Varela Round and Lora in our mobile demo so it becomes https://fonts.googleapis.com/css?family=Lora|Varela+Round.
Copy this exact text layer to each artboard that you generate where you want the fonts to render correctly when exporting to .html files. You can turn down the opacity of the text layer to 0% it will still work. π π
The whole purpose of doing this inside of Sketch is that you will be able to share your design prototypes with other people by uploading them to your own servers.
Fluid fonts
Pro tip! By adding the class js-font-fluid-12 you will have fluid font-size. The last part (12) refers to the number of px the font will span between. This is also dependant of the artboart size.
Example:
You have a mobile-size artboard (576px wide).
You have a {text} with font-size 18px.
You have a {text} with the class js-font-fluid-10 ( {text} [js-font-fluid-10])
The font-size will then flow between 18px at the smallest screen-size and 28px at the largest screen-size.
Another example:
You have a desktop-size artboard (>576px wide).
You have a {text} with font-size 18px.
You have a {text} with the class js-font-fluid-12 ( {text} [js-font-fluid-12])
The font-size will then flow between 6px at the smallest screen-size and 18px at the largest screen-size.
Supports:
classes [ ]
Margins
m1 - m150 = margin 1px-150px
mt = margin top
ml = margin left
mb = margin bottom
mr = margin right
Example
mr78 = margin right 78px
mr78percent = margin right 78%
Paddings
p1 - p150 = padding 1px - 150px
pt = padding top
pl = padding left
pb = padding bottom
pr = padding right
Example
pr78 = padding right 78px
pr78percent = padding right 78%
Alignment
hcenter = center content
Columns
Every Row contains Columns based on a 12 column grid.
{col}
Rows
Every Container contains rows
{row}
Breakpoints
In order to tell the Bootstrap-grid how to behave at different screen sizes (width in px) you have breakpoints. You specify how the columns should group at different breakpoints by using the prefixes: xs, sm, md, lg, xl.
From Bootstrap documentation:
sm: Small devices (landscape phones, 576px and up)
md: Medium devices (tablets, 768px and up)
lg: Large devices (desktops, 992px and up)
xl: Extra large devices (large desktops, 1200px and up)
Extra small devices (portrait phones, less than 576px) No need for a media query since this is the default in Bootstrap.
Non the less we do support xs-break point:
xs: Extra small devices (portrait phones, less than 576px)
Example
{col} sm:12 lg:6 - A Column covers 12 columns at the sm-breakpoint (576px+) and 6 columns at the lg-breakpoint (992px+)
Classes
css-classes on elements are written within [ ]. See chapter βPaddingsβ, βMarginsβ and βAlignmentβ.
Example
{col} [m20]
or with multiple css-classes
{col} [m20 pt10 hcenter]
Responsive Classes
Our Atomic CSS also includes responsive margin- and padding classes. This mean that you can have different margins and paddings for different screen sizes.
You can utilize these by using the prefix βmqβ like this:
Example
mq-lg-mb25
This will give you a margin-bottom of 25px at large screen size width and above (see section about Bootstrapβs breakpoints).
Another example
This will give you a a margin-bottom of 10px up until medium size screens and then switch to 40px up until large screen size where padding-bottom once again changes. This time to 60px. (see section about Bootstrapβs break-points).
Shortcuts
{curly brackets} = alt + shift + ( )
[brackets] = alt + ( )
Last updated