Skip to content

A set of HTML web-components for daily usage.

Notifications You must be signed in to change notification settings

Polight/legoland

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LegoLand

A set of basic Web-Components usable anywhere with no installation.

The webcomponents available are about layout and widget inspired from https://csslayout.io/patterns.

As of today the following components are available:

Usage

The only thing to do is to include the components and use them; it's just HTML!

Use the webcomponents in your HTML page:

<script type="module" src="https://cdn.jsdelivr.net/gh/polight/legoland/dist/index.js"></script>

<stacked-cards angle="3">
  <p>1</p>
  <p>2</p>
  <p>3</p>
</stacked-cards>

<!-- Tune your CSS -->
<style>
  stacked-cards p {
    width: 200px;
    height: 300px;
    border: 2px solid #888;
  }
</style>

Advanced Usage

You may include all components calling https://cdn.jsdelivr.net/gh/polight/legoland/dist/index.js.

If you'd rather pick a selection of components you can include the script directly from /dist. Eg: <script type="module" src="https://cdn.jsdelivr.net/gh/polight/legoland/dist/safe-html.js"></script> to call the safe-html component.

Building Legoland

  1. install the lego dependency: npm i
  2. create your own component in the bricks folder (view Lego doc)
  3. build it: npm run build (or npm run dev if you want an auto-refresh)

About

These components were originally written in Lego.

About

A set of HTML web-components for daily usage.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages