This is your page to play with, and it is fully editable. Mess it up!
You can always access this page again at help.brick.do/guide.
Before you learn about how to use Brick, here's a short pitch. Brick is a minimalistic tool, so it's easy to miss what's exciting about it.
The primary reason is that Brick is explicitly designed to get people to write more. And so far our users report that it works!
Here are the tricks we have up our sleeves:
git
, it's easy to find yourself in editing hell, or with a folder of unfinished drafts that will forever remain drafts.Alright, and now you can go through the tutorial β or just create a new page and start writing!
Our editor has a lot of features β and we are working on more and more and more. Check out the features below to fully unleash our editor's power.
Let's go through the most common shortcuts, just in case. They make life significantly easier.
There are several ways to add images:
Ctrl+V
(especially easy for screenshots),
Brick provides infinite styling possibilities with the power of adding custom CSS to your pages.
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&family=Staatliches&display=swap');
h1, h2, h3, h4 {
font-family: 'Staatliches';
text-align: center !important;
}
h2, h3, h4 {
margin-top: 2em;
}
.page a, .page .page-link, .page-title {
color: rgb(232, 23, 92);
}
.page-title {
font-size: 280%;
line-height: 115%;
}
.page-title::before { content: 'β '; }
.page-title::after { content: ' β'; }
.page {
font-family: 'Lato';
font-size: 130%;
}
Custom CSS will be automatically applied for all children pages, unless they have their own style.
CSS supports different color formats: rgb
, rgba
, hex
, hsla
. You can use any format you like.
color.hailpixel.com is a great and easy to use color picker which provides hex codes you can use in CSS right away.
.page {
color: #142A3D;
}
.page {
background: #ABCDE3;
}
Open fonts.google.com and click on any font you like.
Select the weights you want to include for your page (usually just 400, for regular text, and 600 for bold):
Choose the @import radiobox in the right sidebar:
Copy the content of the <style>
tag:
Open Custom CSS settings of any page and paste the copied @import
on top.
Go back to Google Fonts and copy the CSS rule for your font:
Add the copied CSS rule to any element you want. To use font for everything at the page paste the rule inside the .page
selector:
.page {
font-family: 'JetBrains Mono', monospace;
}