changed project structure
moves files from scss to sass directory moved all variables to different file to simplify theming accross the whole library
This commit is contained in:
@ -4,10 +4,12 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Sass test</title>
|
||||
<link rel="stylesheet" href="scss/main.sass">
|
||||
<link rel="stylesheet" href="scss/navbar.sass">
|
||||
<link rel="stylesheet" href="scss/messaging.sass">
|
||||
<link rel="stylesheet" href="scss/selector.sass">
|
||||
<link rel="stylesheet" href="sass/variables.sass">
|
||||
<link rel="stylesheet" href="sass/main.sass">
|
||||
<link rel="stylesheet" href="sass/navbar.sass">
|
||||
<link rel="stylesheet" href="sass/messaging.sass">
|
||||
<link rel="stylesheet" href="sass/selector.sass">
|
||||
<link rel="stylesheet" href="sass/button.sass">
|
||||
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/11.5.0/styles/default.min.css">
|
||||
</head>
|
||||
<body>
|
||||
@ -29,6 +31,12 @@
|
||||
</header>
|
||||
<main>
|
||||
<div class="container">
|
||||
<h1>Button Test</h1>
|
||||
<button class="btn">test</button>
|
||||
<button class="btn btn-primary">test</button>
|
||||
<button class="btn btn-warning">test</button>
|
||||
<button class="btn btn-danger">test</button>
|
||||
<button class="btn btn-success">test</button>
|
||||
<h1>Toggle Slide</h1>
|
||||
<br>
|
||||
<!-- Rectangular switch -->
|
||||
|
Reference in New Issue
Block a user