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:
49
src/main.scss
Normal file
49
src/main.scss
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user