Show More
@@ -0,0 +1,11 b'' | |||
|
1 | // Mixin CSS classes | |
|
2 | ||
|
3 | .border-box-sizing { | |
|
4 | box-sizing: border-box; | |
|
5 | -moz-box-sizing: border-box; | |
|
6 | -webkit-box-sizing: border-box; | |
|
7 | } | |
|
8 | ||
|
9 | .corner-all { | |
|
10 | border-radius: @corner_radius; | |
|
11 | } No newline at end of file |
@@ -1,4 +1,9 b'' | |||
|
1 | // Our base less styles. This should be @import'ed by the main .less | |
|
2 | // files of each page. This file should not itself be compiled to css. | |
|
3 | ||
|
1 | 4 | @import "../../../components/bootstrap/less/bootstrap.less"; |
|
2 | 5 | @import "variables.less"; |
|
6 | @import "mixins.less"; | |
|
3 | 7 | @import "flexbox.less"; |
|
4 | 8 | @import "page.less"; |
|
9 |
@@ -1,5 +1,3 b'' | |||
|
1 | // Our customizations to bootstrap | |
|
1 | // Our customizations to bootstrap no here. | |
|
2 | 2 | |
|
3 | 3 | @textColor: @black; |
|
4 | ||
|
5 | @baseFontSize: 10pt; No newline at end of file |
@@ -1,19 +1,11 b'' | |||
|
1 | // Bootstrap customizations specific to this page. | |
|
2 | ||
|
1 | 3 | @corner_radius: 4px; |
|
2 | 4 | @notebook_background : white; |
|
3 | 5 | @cell_selected_background: darken(@notebook_background, 2%); |
|
4 | 6 | @cell_background: darken(@notebook_background, 3.2%); |
|
5 | 7 | @border_color: darken(@cell_selected_background, 31%); |
|
6 | 8 | @light_border_color: darken(@cell_selected_background, 17%); |
|
7 | 9 | @borderwidth : 1px; |
|
8 | 10 | @fontBaseColor : black; |
|
9 | ||
|
10 | 11 | @baseFontSize: 30pt; |
|
11 | ||
|
12 | ||
|
13 | ||
|
14 | ||
|
15 | // utilities mixins | |
|
16 | ||
|
17 | .corner-all { | |
|
18 | border-radius:@corner_radius; | |
|
19 | } |
|
1 | NO CONTENT: file renamed from IPython/frontend/html/notebook/templates/base.html to IPython/frontend/html/notebook/templates/page.html |
General Comments 0
You need to be logged in to leave comments.
Login now