mirror of
https://github.com/bitwarden/browser.git
synced 2025-01-04 18:37:45 +01:00
theme styling
This commit is contained in:
parent
ce34ef902f
commit
e814b8ef09
@ -1,4 +1,4 @@
|
|||||||
<nav class="navbar navbar-expand navbar-dark bg-dark">
|
<nav class="navbar navbar-expand navbar-dark bg-primary">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<a class="navbar-brand" href="#">
|
<a class="navbar-brand" href="#">
|
||||||
<i class="fa fa-shield fa-lg"></i>
|
<i class="fa fa-shield fa-lg"></i>
|
||||||
@ -48,7 +48,7 @@
|
|||||||
<a href="#" class="list-group-item list-group-item-action">
|
<a href="#" class="list-group-item list-group-item-action">
|
||||||
Item 1
|
Item 1
|
||||||
</a>
|
</a>
|
||||||
<a href="#" class="list-group-item list-group-item-action">
|
<a href="#" class="list-group-item list-group-item-action active">
|
||||||
Item 2
|
Item 2
|
||||||
</a>
|
</a>
|
||||||
<a href="#" class="list-group-item list-group-item-action">
|
<a href="#" class="list-group-item list-group-item-action">
|
||||||
@ -70,6 +70,16 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="container footer">
|
<div class="container footer text-muted">
|
||||||
© 2015-2018 8bit Solutions LLC
|
<div class="row">
|
||||||
|
<div class="col">
|
||||||
|
© 2015-2018 8bit Solutions LLC
|
||||||
|
</div>
|
||||||
|
<div class="col text-center">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="col text-right">
|
||||||
|
Version 2.0.0
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -7,6 +7,9 @@ $theme-colors: (
|
|||||||
"warning": #bf7e16
|
"warning": #bf7e16
|
||||||
);
|
);
|
||||||
|
|
||||||
|
$body-bg: #ffffff;
|
||||||
|
$body-color: #333333;
|
||||||
|
|
||||||
$font-family-sans-serif: 'Open Sans','Helvetica Neue',Helvetica,
|
$font-family-sans-serif: 'Open Sans','Helvetica Neue',Helvetica,
|
||||||
Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol';
|
Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol';
|
||||||
|
|
||||||
@ -17,10 +20,27 @@ $h4-font-size: 1rem;
|
|||||||
$h5-font-size: 1rem;
|
$h5-font-size: 1rem;
|
||||||
$h6-font-size: 1rem;
|
$h6-font-size: 1rem;
|
||||||
|
|
||||||
|
$navbar-padding-y: .75rem;
|
||||||
$grid-gutter-width: 20px;
|
$grid-gutter-width: 20px;
|
||||||
|
$card-spacer-y: .6rem;
|
||||||
|
|
||||||
|
$list-group-item-padding-y: .6rem;
|
||||||
|
$list-group-active-color: $body-color;
|
||||||
|
$list-group-active-bg: #ffffff;
|
||||||
|
$list-group-active-border-color: rgba(#000000, .125);
|
||||||
|
|
||||||
|
$dropdown-link-hover-color: #ffffff;
|
||||||
|
$dropdown-link-hover-bg: #3c8dbc;
|
||||||
|
|
||||||
|
$navbar-dark-color: rgba(#ffffff, .7);
|
||||||
|
$navbar-dark-hover-color: rgba(#ffffff, .9);
|
||||||
|
|
||||||
@import "../../node_modules/bootstrap/scss/bootstrap";
|
@import "../../node_modules/bootstrap/scss/bootstrap";
|
||||||
|
|
||||||
|
html {
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
min-width: 1010px;
|
min-width: 1010px;
|
||||||
}
|
}
|
||||||
@ -32,9 +52,9 @@ body {
|
|||||||
|
|
||||||
.container {
|
.container {
|
||||||
width: 980px;
|
width: 980px;
|
||||||
|
max-width: none !important;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
max-width: none !important;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.page-content {
|
.page-content {
|
||||||
@ -46,3 +66,9 @@ body {
|
|||||||
padding: 40px 0 10px 0;
|
padding: 40px 0 10px 0;
|
||||||
border-top: 1px solid $border-color;
|
border-top: 1px solid $border-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.list-group-item.active {
|
||||||
|
border-left: 3px solid theme-color("primary");
|
||||||
|
font-weight: bold;
|
||||||
|
padding-left: calc(#{$list-group-item-padding-x} - 3px);
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user