Getting Started

User interfaces whit sedna components.

First Example

Here is a simple codesandbox example to show the usage of Sedna CSS.

NPM

We recommend using npm or yarn to install, it not only facilitates development, but also allows you to take advantage of the rich ecosystem of Javascript packages and tools.

npm install --save sedna

Using Component

In sedna everything is by css components. Only import the component you require.

@import "~sedna/src/sedna";
@include SnBtn();
<div class="SnBtn primary">Primary</div>

Dowloand

Download Sedna CSS with all components

Simple Using

<!DOCTYPE html>
<html lang="en">
<head>
    <link rel="stylesheet" href="sedna.css">
    <script src="sedna.js"></script>
</head>
<body>
    <div class="SnBtn primary">Primary</div>
</body>
</html>