murb design system

Really, this is not a design system yet. Filler text where lengthier explicitly copied from Wikipedia: ClimateChange.

Principles

Variables

$fontFamily 'Helvetica Neue', Helvetica, 'Nimbus Sans', 'Nimbus Sans L', Inter, Roboto, 'Arial Nova', Arial, sans-serif;
$offBlack   #111;
$darkGrey   #777;
$grey   #bbb;
$lightGrey   #ddd;
$lighterGrey   #eee;
$offWhite   #fefefe;
$selectableColor   #777; ($darkGrey)
$selectableColorHover   #111; ($offBlack)
$lineHeight 1.6666;
$mainWidth 80em;
$gap 1em;
$padding 1em;
$margin 1em;
$white   #fff;
$darkGreen   #006266;
$red   #dd0000;
$lightRed   #ff9999;
$green   #009432;
$lightGreen   #A3CB38;
$lighterGreen   #C4E538;
$borderRadius 1em;
$backgroundColor   #eee; ($lighterGrey)
$primaryColor   #006266; ($darkGreen)
$primaryHoverColor   #009432; ($green)
$borderColor   #eee; ($lighterGrey)
$inputBorderColor   #bbb; ($grey)
$articleTextScaling 1.3333; // perfect fours
$articleTextScalingMin 1.6666;
$articleTextScalingMax 2;
$alertBackgroundColor   #D1AFAC;
$noticeBackgroundColor #ACD1AF

Headers

You've already come accross h1 and h2

Level 3

Level 4

Level 5
Level 6

Note we also have article display; these headers are a tad bit nicer.

Links on headers don't get additional colouring

A linking h3

Alerts & notices

Alert: climate change is happening

Callout: did you know that most CO2 is emitted by electricity and heat

Notice: great to hear you've stopped long distance travel

Lists

Just use regular HTML

Unordered lists

Ordered lists

  1. Use semantic HTML and rely on it without using additional classes
  2. Do not reset the browser stylesheets (there might be a reason for it)
  3. ...

Definition lists

CSS
Cascading Style Sheets
HTML
HyperText Markup Language

The above is basically unstyled. You can add a .no-inset class to remove the default padding. A slight bottom margin is added to keep the visual grouping

CSS
Cascading Style Sheets
HTML
HyperText Markup Language

Finally, you there is an inline variant, where the dt and dd are displayed inline. This is done by adding a .inline class to the dl-element.

CSS
Cascading Style Sheets. Also here we add a small bottom margin to make sure that even when the text is very long, like this, there is some visual grouping.
HTML
HyperText Markup Language

Images

Figure with a figcaption

stripes showing temperature rise from 1850 till 2024; blue is cooler; red is warmer, dark red is warmest; rising temperature is made absolutely clear from left to right
Warming Strips 1850-2024 for the globe provided by #ShowYourStripes, data by UK MetOffice

Note, this also works in article view, see below.

Forms

Buttons

These buttons are indeed presented within a fieldset

A link with a button class
.button.small

Selecting one or more from a list of variables

We use a option select if there is more than > 8 options to present.

Radiobuttons


Checkboxes


Note we do a few nice things, this is a form (but invisible)

This doesn't get top margin

This does

Tables

Head Other
head
Foot € 12335.00
Number next
(with .number class)
€ 12.00
Other number (with .number class) € 12323.00

Sorting tables

When applying aria-sort="ascending" or aria-sort="descending" (see MDN on Aria Sort) you get automatic content after

Ascending Descending

Cards

These have been heavily influenced by Inclusive Component Cards

  1. Text before image
    Image
  2. Text
    Image
  3. Text
    Image
  4. Text
    Image
  5. Text
    Image
  6. Text
    Image
  7. Text
    Image

Other text blocks

Just `pre`

The MIT License (MIT)

Copyright © 2025


Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the “Software”), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

A code block `pre > code`

# My favourite programming language is ruby

def say(what)
  puts what || ["Euh", "Ah", "..."].sample
end

10.times { say "Hello!" } # prints Hello! 10 times :)
10.times { say } # prints randomly one of the texts "Euh", "Ah" ...
Aside: I have some concerns about ruby and its climate impact, but there are multiple ways to make delivery more efficient. Caching is one of them.

Inline code

Sometimes you just want to say that a method called puts writes something to the screen.

Blockquote

Friday's for future, which started with Greta Thunberg's weekly strike works towards the following goals

  1. Keep the global temperature rise below 1.5 °C compared to pre-industrial levels.
  2. Ensure climate justice and equity.
  3. Listen to the best united science currently available.
  1. Keep the global temperature rise below 1.5 °C compared to pre-industrial levels.
  2. Ensure climate justice and equity.
  3. Listen to the best united science currently available.

We can present this a bit nicer using a figure block

  1. Keep the global temperature rise below 1.5 °C compared to pre-industrial levels.
  2. Ensure climate justice and equity.
  3. Listen to the best united science currently available.
Declaration of Lausanne | August 2019, 400 climate activists from 38 countries

Sometimes the quote quotes a quote

  1. Keep the global temperature rise below 1.5 °C compared to pre-industrial levels.
  2. Ensure climate justice and equity.
  3. Listen to the best united science currently available.
  1. Keep the global temperature rise below 1.5 °C compared to pre-industrial levels.
  2. Ensure climate justice and equity.
  3. Listen to the best united science currently available.
Declaration of Lausanne | August 2019, 400 climate activists from 38 countries
Declaration of Lausanne | August 2019, 400 climate activists from 38 countries

Meta section

Meta before meta was just meta. So that's something you want to add to the top of your article.

This article was published about 2 hours ago.

Meta below a title

The paragraph won't exercise any margin on bottom.

This is a paragraph after the meta though.

Columns

Simply wrap it in a .u-columns class

Column 1 Column 2

It just will try to make things fit:

Column 1 Column 2 Column 3 Column 4 Column 5

A single column will just center at max 50%

Centered column

Main demo As one has got to demo

when you wrap both a main and an aside in .u-columns; columns will be slightly different

this is a main element

this is a main element

this is a main element

this is a main element

Back to a single main

Note: you should really have just a single main section in your page.

Printing

A few tools for printing have been added.

To make a page break, add a .page class to a hr-element.


This will be on a single page


You can hide things for print using a .not-for-print class, see below.

.not-for-print is not visible here

Articles

An article with a H1 gets special treatment

I am level 2

Styling the third level

And since this is a perfect four

Still, we do five
And we won't forget about 6

Present-day climate change includes both global warming—the ongoing increase in global average temperature—and its wider effects on Earth’s climate system. Climate change in a broader sense also includes previous long-term changes to Earth's climate. The current rise in global temperatures is driven by human activities, especially fossil fuel burning since the Industrial Revolution.[3][4]

A demo with columns

Present-day climate change includes both global warming—the ongoing increase in global average temperature—and its wider effects on Earth’s climate system. Climate change in a broader sense also includes previous long-term changes to Earth's climate. The current rise in global temperatures is driven by human activities, especially fossil fuel burning since the Industrial Revolution.

Fossil fuel use, deforestation, and some agricultural and industrial practices release greenhouse gases.[5] These gases absorb some of the heat that the Earth radiates after it warms from sunlight, warming the lower atmosphere. Carbon dioxide, the primary gas driving global warming, has increased in concentration by about 50% since the pre-industrial era to levels not seen for millions of years.

stripes showing temperature rise from 1850 till 2024; blue is cooler; red is warmer, dark red is warmest; rising temperature is made absolutely clear from left to right
Warming Strips 1850-2024 for the globe provided by #ShowYourStripes, data by UK MetOffice

Climate change has an increasingly large impact on the environment. Deserts are expanding, while heat waves and wildfires are becoming more common.[7] Amplified warming in the Arctic has contributed to thawing permafrost, retreat of glaciers and sea ice decline.[8] Higher temperatures are also causing more intense storms, droughts, and other weather extremes.[9] Rapid environmental change in mountains, coral reefs, and the Arctic is forcing many species to relocate or become extinct.[10] Even if efforts to minimize future warming are successful, some effects will continue for centuries. These include ocean heating, ocean acidification and sea level rise.[11]

Impact

Environmental effects

This is a demo of a column width .u-columns--reduced-class applied.

The environmental effects of climate change are broad and far-reaching, affecting oceans, ice, and weather. Changes may occur gradually or rapidly. Evidence for these effects comes from studying climate change in the past, from modelling, and from modern observations.[189] Since the 1950s, droughts and heat waves have appeared simultaneously with increasing frequency.[190] Extremely wet or dry events within the monsoon period have increased in India and East Asia.[191] Monsoonal precipitation over the Northern Hemisphere has increased since 1980.[192] The rainfall rate and intensity of hurricanes and typhoons is likely increasing,[193] and the geographic range likely expanding poleward in response to climate warming.[194] Frequency of tropical cyclones has not increased as a result of climate change.[195]

# My favourite language is ruby

10.times { puts "Hello!" } # prints Hello! 10 times :)

Global sea level is rising as a consequence of thermal expansion and the melting of glaciers and ice sheets. Sea level rise has increased over time, reaching 4.8 cm per decade between 2014 and 2023.[197] Over the 21st century, the IPCC projects 32–62 cm of sea level rise under a low emission scenario, 44–76 cm under an intermediate one and 65–101 cm under a very high emission scenario.[198] Marine ice sheet instability processes in Antarctica may add substantially to these values,[199] including the possibility of a 2-meter sea level rise by 2100 under high emissions.[200]

Reducing and recapturing emissions

The following main block is a demo of an main, immediately followed with a first-child article, making a text stand out more, to focus on the text.

Climate change can be mitigated by reducing the rate at which greenhouse gases are emitted into the atmosphere, and by increasing the rate at which carbon dioxide is removed from the atmosphere.[274] To limit global warming to less than 1.5 °C global greenhouse gas emissions needs to be net-zero by 2050, or by 2070 with a 2 °C target.[275] This requires far-reaching, systemic changes on an unprecedented scale in energy, land, cities, transport, buildings, and industry.[276]

The United Nations Environment Programme estimates that countries need to triple their pledges under the Paris Agreement within the next decade to limit global warming to 2 °C. An even greater level of reduction is required to meet the 1.5 °C goal.[277] With pledges made under the Paris Agreement as of 2024, there would be a 66% chance that global warming is kept under 2.8 °C by the end of the century (range: 1.9–3.7 °C, depending on exact implementation and technological progress). When only considering current policies, this raises to 3.1 °C.[278] Globally, limiting warming to 2 °C may result in higher economic benefits than economic costs.[279]

Visual comparison