An open API service indexing awesome lists of open source software.

https://github.com/royalicing/tela


https://github.com/royalicing/tela

Last synced: over 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# Tela

Alpha version can be loaded via jsdelivr:

## Grid

Uses CSS grid.

### Two column grid:

```html


  • First

  • Second

  • Third

  • Fourth


```

### Three column grid:

```html


  • First

  • Second

  • Third

  • Fourth


```

### Four column grid:

```html


  • First

  • Second

  • Third

  • Fourth


```

## X

Uses flexbox with row direction, items aligned center.

```html


  • First

  • Second

  • Third


```

## Y

Uses flexbox with column direction.

```html


  • First

  • Second

  • Third


```

## Text

### Centering text

```html


Some heading


Some descriptive text


```

## Responsive

```html


  • First

  • Second

  • Third


```

## Getting started

You may define the following CSS variables:

```css
:root {
--size-7: 4rem;
--size-6: 3rem;
--size-5: 2.25rem;
--size-4: 1.875rem;
--size-3: 1.5rem;
--size-2: 1.25rem;
--size-1: 1.125rem;
--size-0: 1rem;
--size--1: 0.875rem;
--size--2: 0.75rem;
}
```