1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00

stubbing out some layout

This commit is contained in:
Kyle Spearrin
2018-06-06 09:43:28 -04:00
parent db5a5e1b37
commit ce34ef902f
11 changed files with 198 additions and 18 deletions

View File

@@ -1,3 +1,48 @@
$theme-colors: (
"primary": #3c8dbc,
"primary-accent": #286090,
"danger": #dd4b39,
"success": #00a65a,
"info": #555555,
"warning": #bf7e16
);
$font-family-sans-serif: 'Open Sans','Helvetica Neue',Helvetica,
Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol';
$h1-font-size: 2rem;
$h2-font-size: 1.3rem;
$h3-font-size: 1rem;
$h4-font-size: 1rem;
$h5-font-size: 1rem;
$h6-font-size: 1rem;
$grid-gutter-width: 20px;
@import "../../node_modules/bootstrap/scss/bootstrap";
body {
background-color: gray;
min-width: 1010px;
}
.navbar {
padding-left: 0;
padding-right: 0;
}
.container {
width: 980px;
margin: 0 auto;
padding: 0;
max-width: none !important;
}
.page-content {
margin-top: 20px;
}
.footer {
margin-top: 40px;
padding: 40px 0 10px 0;
border-top: 1px solid $border-color;
}