-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
index.scss
58 lines (46 loc) · 1.35 KB
/
index.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*!
Copyright 2015-present Palantir Technologies, Inc. All rights reserved.
Licensed under the Apache License, Version 2.0.
*/
@import "~normalize.css/normalize.css";
// import these first because they're the base layer
@import "~@blueprintjs/core/lib/css/blueprint.css";
@import "~@blueprintjs/datetime/lib/css/blueprint-datetime.css";
@import "~@blueprintjs/icons/lib/css/blueprint-icons.css";
@import "~@blueprintjs/select/lib/css/blueprint-select.css";
@import "~@blueprintjs/table/lib/css/table.css";
@import "~@blueprintjs/timezone/lib/css/blueprint-timezone.css";
// then the docs theme styles
@import "~@blueprintjs/docs-theme/lib/css/docs-theme.css";
@import "~@blueprintjs/docs-theme/src/styles/variables";
// then our own styles
@import "styles/colors";
@import "styles/examples";
@import "styles/icons";
@import "styles/nav";
@import "styles/resources";
@import "styles/welcome";
.docs-releases-menu .#{$ns}-menu {
min-width: 270px;
}
// remove padding on left side of tables in documentation
.docs-section .#{$ns}-running-text table {
margin: $content-padding 0;
th {
padding-top: 0;
}
th:first-child,
td:first-child {
padding-right: 0;
padding-left: 0;
}
}
.docs-root,
.docs-nav,
.docs-content-wrapper,
.docs-example,
.docs-example-options,
.editor,
code {
transition: background-color $pt-transition-duration $pt-transition-ease;
}