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

https://github.com/dimitrinicolas/semantic.css

Classless CSS framework for building quick semantic HTML pages prototypes
https://github.com/dimitrinicolas/semantic.css

css css-framework semantic-web

Last synced: 1 day ago
JSON representation

Classless CSS framework for building quick semantic HTML pages prototypes

Awesome Lists containing this project

README

        

# semantic.css

Quickly prototype your test HTML page with zero CSS class.

## Instalation

[Download the lastest realease][lastest release] or install it via NPM:

```
npm install semantic.css
```

Then you can include it in your CSS, depending on your pre/post processor:

```scss
@import "semantic.css";
/* or */
@import "./node_modules/semantic.css/dist/semantic.css";
```

## [Online Documentation][doc]

Available at the address: [dimitrinicolas.github.io/semantic.css/][doc]

### Header

```html


semantic.css

Github repository

```

### Main & Section content

```html


content


content

```

### Heading

```html

h1 title


h2 title


h3 title


h4 title


h5 title

h6 title

```

### Button

```html
Button
Disabled button
```

### List

```html



  1. An ordered list

  2. With some links

  3. And bold text


```

### Blockquote

```html


β€œThe question of whether a computer can think is no more interesting than the question of whether a submarine can swim.”
― Edsger W. Dijkstra

```

### Image

```html
Icelandic landscape


Icelandic landscape

```

### Dialog

```html
An open dialog
```

### Form
#### Input

```html


Label input


```

#### Checkbox & Radio

```html



Checkbox label



Radio label 1



Radio label 2

```

#### Select

```html


Option 1
Option 2
Option 3

```

#### Textarea & Submit

```html


```

### Footer

```html


footer

```

## Related

- [modern-normalize][modern-normalize] - Normalize browsers' default style

## License

This project is licensed under the [MIT license](LICENSE).

[doc]: https://dimitrinicolas.github.io/semantic.css/
[lastest release]: https://github.com/dimitrinicolas/semantic.css/releases/latest

[postcss-import]: https://github.com/postcss/postcss-import
[modern-normalize]: https://github.com/sindresorhus/modern-normalize