1
0
mirror of https://github.com/BoostIo/Boostnote synced 2026-01-21 21:05:31 +00:00

Basic authentication is done.(need refactor)

This commit is contained in:
Rokt33r
2015-05-27 16:42:34 +09:00
parent 3e5fe1284d
commit 092a2f3e8a
22 changed files with 932 additions and 19 deletions

49
src/main.scss Normal file
View File

@@ -0,0 +1,49 @@
$fa-font-path: "./resources/fonts";
@import "../node_modules/font-awesome/scss/font-awesome";
@import "bootstrap";
@import "ui-select";
@import "../node_modules/bootstrap-sass/assets/stylesheets/bootstrap/variables";
$side-view-bg: $navbar-inverse-bg;
$side-view-color: $navbar-inverse-color;
html {
overflow: hidden;
height: 100%;
}
body {
height: 100%;
overflow: auto;
}
#side-view{
position:absolute;
top: 0;
bottom: 0;
left: 0;
width: 200px;
color: $navbar-inverse-color;
background-color: $side-view-bg;
box-sizing: border-box;
padding: 10px 0 10px 10px;
.nav.nav-pills>li>a{
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
}
.alert{
margin: 5px 0;
}
#main-view{
position:absolute;
top: 0;
bottom: 0;
left: 200px;
right: 0;
overflow-x: hidden;
overflow-y: scroll;
}