chrome.scss 1.1 KB
Newer Older
1 2 3 4 5 6
// Copyright 2015 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
B
bryk 已提交
7
//     http://www.apache.org/licenses/LICENSE-2.0
8 9 10 11 12 13 14
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

15
@import '../variables';
16

17 18
.kd-toolbar-logo {
  height: 42px;
B
bryk 已提交
19
  margin-right: 1em;
B
bryk 已提交
20
  width: 42px;
21
}
B
bryk 已提交
22 23

.kd-toolbar {
24
  box-shadow: $whiteframe-shadow-1dp;
B
bryk 已提交
25
}
B
bryk 已提交
26

27 28
body {
  background-color: $body;
29
  height: 100%;
B
bryk 已提交
30
}
31 32 33 34

a {
  text-decoration: inherit;
}
35 36 37 38 39 40 41 42 43

.kd-toolbar-tools,
.kd-app-content-wrapper {
  margin: 0 auto;
}

.kd-app-content {
  position: relative;
}
B
bryk 已提交
44

B
bryk 已提交
45
.kd-center-fixed {
B
bryk 已提交
46 47 48 49 50 51 52 53 54 55
  align-items: center;
  bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}