##// END OF EJS Templates
genereate css
Sylvain Corlay -
Show More
@@ -5785,24 +5785,23 b' button.close {'
5785 *
5785 *
5786 */
5786 */
5787 /*!
5787 /*!
5788 * Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome
5788 * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
5789 * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
5789 * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
5790 */
5790 */
5791 /* FONT PATH
5791 /* FONT PATH
5792 * -------------------------- */
5792 * -------------------------- */
5793 @font-face {
5793 @font-face {
5794 font-family: 'FontAwesome';
5794 font-family: 'FontAwesome';
5795 src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?v=4.1.0');
5795 src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?v=4.2.0');
5796 src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'), url('../components/font-awesome/fonts/fontawesome-webfont.woff?v=4.1.0') format('woff'), url('../components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.1.0') format('truetype'), url('../components/font-awesome/fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular') format('svg');
5796 src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'), url('../components/font-awesome/fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'), url('../components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'), url('../components/font-awesome/fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format('svg');
5797 font-weight: normal;
5797 font-weight: normal;
5798 font-style: normal;
5798 font-style: normal;
5799 }
5799 }
5800 .fa {
5800 .fa {
5801 display: inline-block;
5801 display: inline-block;
5802 font-family: FontAwesome;
5802 font: normal normal normal 14px/1 FontAwesome;
5803 font-style: normal;
5803 font-size: inherit;
5804 font-weight: normal;
5804 text-rendering: auto;
5805 line-height: 1;
5806 -webkit-font-smoothing: antialiased;
5805 -webkit-font-smoothing: antialiased;
5807 -moz-osx-font-smoothing: grayscale;
5806 -moz-osx-font-smoothing: grayscale;
5808 }
5807 }
@@ -5864,36 +5863,20 b' button.close {'
5864 margin-left: .3em;
5863 margin-left: .3em;
5865 }
5864 }
5866 .fa-spin {
5865 .fa-spin {
5867 -webkit-animation: spin 2s infinite linear;
5866 -webkit-animation: fa-spin 2s infinite linear;
5868 -moz-animation: spin 2s infinite linear;
5867 animation: fa-spin 2s infinite linear;
5869 -o-animation: spin 2s infinite linear;
5870 animation: spin 2s infinite linear;
5871 }
5872 @-moz-keyframes spin {
5873 0% {
5874 -moz-transform: rotate(0deg);
5875 }
5876 100% {
5877 -moz-transform: rotate(359deg);
5878 }
5879 }
5868 }
5880 @-webkit-keyframes spin {
5869 @-webkit-keyframes fa-spin {
5881 0% {
5870 0% {
5882 -webkit-transform: rotate(0deg);
5871 -webkit-transform: rotate(0deg);
5872 transform: rotate(0deg);
5883 }
5873 }
5884 100% {
5874 100% {
5885 -webkit-transform: rotate(359deg);
5875 -webkit-transform: rotate(359deg);
5876 transform: rotate(359deg);
5886 }
5877 }
5887 }
5878 }
5888 @-o-keyframes spin {
5879 @keyframes fa-spin {
5889 0% {
5890 -o-transform: rotate(0deg);
5891 }
5892 100% {
5893 -o-transform: rotate(359deg);
5894 }
5895 }
5896 @keyframes spin {
5897 0% {
5880 0% {
5898 -webkit-transform: rotate(0deg);
5881 -webkit-transform: rotate(0deg);
5899 transform: rotate(0deg);
5882 transform: rotate(0deg);
@@ -5906,43 +5889,40 b' button.close {'
5906 .fa-rotate-90 {
5889 .fa-rotate-90 {
5907 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
5890 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
5908 -webkit-transform: rotate(90deg);
5891 -webkit-transform: rotate(90deg);
5909 -moz-transform: rotate(90deg);
5910 -ms-transform: rotate(90deg);
5892 -ms-transform: rotate(90deg);
5911 -o-transform: rotate(90deg);
5912 transform: rotate(90deg);
5893 transform: rotate(90deg);
5913 }
5894 }
5914 .fa-rotate-180 {
5895 .fa-rotate-180 {
5915 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
5896 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
5916 -webkit-transform: rotate(180deg);
5897 -webkit-transform: rotate(180deg);
5917 -moz-transform: rotate(180deg);
5918 -ms-transform: rotate(180deg);
5898 -ms-transform: rotate(180deg);
5919 -o-transform: rotate(180deg);
5920 transform: rotate(180deg);
5899 transform: rotate(180deg);
5921 }
5900 }
5922 .fa-rotate-270 {
5901 .fa-rotate-270 {
5923 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
5902 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
5924 -webkit-transform: rotate(270deg);
5903 -webkit-transform: rotate(270deg);
5925 -moz-transform: rotate(270deg);
5926 -ms-transform: rotate(270deg);
5904 -ms-transform: rotate(270deg);
5927 -o-transform: rotate(270deg);
5928 transform: rotate(270deg);
5905 transform: rotate(270deg);
5929 }
5906 }
5930 .fa-flip-horizontal {
5907 .fa-flip-horizontal {
5931 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
5908 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
5932 -webkit-transform: scale(-1, 1);
5909 -webkit-transform: scale(-1, 1);
5933 -moz-transform: scale(-1, 1);
5934 -ms-transform: scale(-1, 1);
5910 -ms-transform: scale(-1, 1);
5935 -o-transform: scale(-1, 1);
5936 transform: scale(-1, 1);
5911 transform: scale(-1, 1);
5937 }
5912 }
5938 .fa-flip-vertical {
5913 .fa-flip-vertical {
5939 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
5914 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
5940 -webkit-transform: scale(1, -1);
5915 -webkit-transform: scale(1, -1);
5941 -moz-transform: scale(1, -1);
5942 -ms-transform: scale(1, -1);
5916 -ms-transform: scale(1, -1);
5943 -o-transform: scale(1, -1);
5944 transform: scale(1, -1);
5917 transform: scale(1, -1);
5945 }
5918 }
5919 :root .fa-rotate-90,
5920 :root .fa-rotate-180,
5921 :root .fa-rotate-270,
5922 :root .fa-flip-horizontal,
5923 :root .fa-flip-vertical {
5924 filter: none;
5925 }
5946 .fa-stack {
5926 .fa-stack {
5947 position: relative;
5927 position: relative;
5948 display: inline-block;
5928 display: inline-block;
@@ -6008,6 +5988,8 b' button.close {'
6008 .fa-check:before {
5988 .fa-check:before {
6009 content: "\f00c";
5989 content: "\f00c";
6010 }
5990 }
5991 .fa-remove:before,
5992 .fa-close:before,
6011 .fa-times:before {
5993 .fa-times:before {
6012 content: "\f00d";
5994 content: "\f00d";
6013 }
5995 }
@@ -6337,7 +6319,8 b' button.close {'
6337 .fa-arrows-h:before {
6319 .fa-arrows-h:before {
6338 content: "\f07e";
6320 content: "\f07e";
6339 }
6321 }
6340 .fa-bar-chart-o:before {
6322 .fa-bar-chart-o:before,
6323 .fa-bar-chart:before {
6341 content: "\f080";
6324 content: "\f080";
6342 }
6325 }
6343 .fa-twitter-square:before {
6326 .fa-twitter-square:before {
@@ -7166,7 +7149,6 b' button.close {'
7166 .fa-digg:before {
7149 .fa-digg:before {
7167 content: "\f1a6";
7150 content: "\f1a6";
7168 }
7151 }
7169 .fa-pied-piper-square:before,
7170 .fa-pied-piper:before {
7152 .fa-pied-piper:before {
7171 content: "\f1a7";
7153 content: "\f1a7";
7172 }
7154 }
@@ -7283,6 +7265,7 b' button.close {'
7283 content: "\f1cc";
7265 content: "\f1cc";
7284 }
7266 }
7285 .fa-life-bouy:before,
7267 .fa-life-bouy:before,
7268 .fa-life-buoy:before,
7286 .fa-life-saver:before,
7269 .fa-life-saver:before,
7287 .fa-support:before,
7270 .fa-support:before,
7288 .fa-life-ring:before {
7271 .fa-life-ring:before {
@@ -7350,6 +7333,129 b' button.close {'
7350 .fa-bomb:before {
7333 .fa-bomb:before {
7351 content: "\f1e2";
7334 content: "\f1e2";
7352 }
7335 }
7336 .fa-soccer-ball-o:before,
7337 .fa-futbol-o:before {
7338 content: "\f1e3";
7339 }
7340 .fa-tty:before {
7341 content: "\f1e4";
7342 }
7343 .fa-binoculars:before {
7344 content: "\f1e5";
7345 }
7346 .fa-plug:before {
7347 content: "\f1e6";
7348 }
7349 .fa-slideshare:before {
7350 content: "\f1e7";
7351 }
7352 .fa-twitch:before {
7353 content: "\f1e8";
7354 }
7355 .fa-yelp:before {
7356 content: "\f1e9";
7357 }
7358 .fa-newspaper-o:before {
7359 content: "\f1ea";
7360 }
7361 .fa-wifi:before {
7362 content: "\f1eb";
7363 }
7364 .fa-calculator:before {
7365 content: "\f1ec";
7366 }
7367 .fa-paypal:before {
7368 content: "\f1ed";
7369 }
7370 .fa-google-wallet:before {
7371 content: "\f1ee";
7372 }
7373 .fa-cc-visa:before {
7374 content: "\f1f0";
7375 }
7376 .fa-cc-mastercard:before {
7377 content: "\f1f1";
7378 }
7379 .fa-cc-discover:before {
7380 content: "\f1f2";
7381 }
7382 .fa-cc-amex:before {
7383 content: "\f1f3";
7384 }
7385 .fa-cc-paypal:before {
7386 content: "\f1f4";
7387 }
7388 .fa-cc-stripe:before {
7389 content: "\f1f5";
7390 }
7391 .fa-bell-slash:before {
7392 content: "\f1f6";
7393 }
7394 .fa-bell-slash-o:before {
7395 content: "\f1f7";
7396 }
7397 .fa-trash:before {
7398 content: "\f1f8";
7399 }
7400 .fa-copyright:before {
7401 content: "\f1f9";
7402 }
7403 .fa-at:before {
7404 content: "\f1fa";
7405 }
7406 .fa-eyedropper:before {
7407 content: "\f1fb";
7408 }
7409 .fa-paint-brush:before {
7410 content: "\f1fc";
7411 }
7412 .fa-birthday-cake:before {
7413 content: "\f1fd";
7414 }
7415 .fa-area-chart:before {
7416 content: "\f1fe";
7417 }
7418 .fa-pie-chart:before {
7419 content: "\f200";
7420 }
7421 .fa-line-chart:before {
7422 content: "\f201";
7423 }
7424 .fa-lastfm:before {
7425 content: "\f202";
7426 }
7427 .fa-lastfm-square:before {
7428 content: "\f203";
7429 }
7430 .fa-toggle-off:before {
7431 content: "\f204";
7432 }
7433 .fa-toggle-on:before {
7434 content: "\f205";
7435 }
7436 .fa-bicycle:before {
7437 content: "\f206";
7438 }
7439 .fa-bus:before {
7440 content: "\f207";
7441 }
7442 .fa-ioxhost:before {
7443 content: "\f208";
7444 }
7445 .fa-angellist:before {
7446 content: "\f209";
7447 }
7448 .fa-cc:before {
7449 content: "\f20a";
7450 }
7451 .fa-shekel:before,
7452 .fa-sheqel:before,
7453 .fa-ils:before {
7454 content: "\f20b";
7455 }
7456 .fa-meanpath:before {
7457 content: "\f20c";
7458 }
7353 /*!
7459 /*!
7354 *
7460 *
7355 * IPython base
7461 * IPython base
@@ -8000,10 +8106,9 b' input.engine_num_input {'
8000 }
8106 }
8001 .folder_icon:before {
8107 .folder_icon:before {
8002 display: inline-block;
8108 display: inline-block;
8003 font-family: FontAwesome;
8109 font: normal normal normal 14px/1 FontAwesome;
8004 font-style: normal;
8110 font-size: inherit;
8005 font-weight: normal;
8111 text-rendering: auto;
8006 line-height: 1;
8007 -webkit-font-smoothing: antialiased;
8112 -webkit-font-smoothing: antialiased;
8008 -moz-osx-font-smoothing: grayscale;
8113 -moz-osx-font-smoothing: grayscale;
8009 content: "\f114";
8114 content: "\f114";
@@ -8016,10 +8121,9 b' input.engine_num_input {'
8016 }
8121 }
8017 .notebook_icon:before {
8122 .notebook_icon:before {
8018 display: inline-block;
8123 display: inline-block;
8019 font-family: FontAwesome;
8124 font: normal normal normal 14px/1 FontAwesome;
8020 font-style: normal;
8125 font-size: inherit;
8021 font-weight: normal;
8126 text-rendering: auto;
8022 line-height: 1;
8023 -webkit-font-smoothing: antialiased;
8127 -webkit-font-smoothing: antialiased;
8024 -moz-osx-font-smoothing: grayscale;
8128 -moz-osx-font-smoothing: grayscale;
8025 content: "\f02d";
8129 content: "\f02d";
@@ -8032,10 +8136,9 b' input.engine_num_input {'
8032 }
8136 }
8033 .file_icon:before {
8137 .file_icon:before {
8034 display: inline-block;
8138 display: inline-block;
8035 font-family: FontAwesome;
8139 font: normal normal normal 14px/1 FontAwesome;
8036 font-style: normal;
8140 font-size: inherit;
8037 font-weight: normal;
8141 text-rendering: auto;
8038 line-height: 1;
8039 -webkit-font-smoothing: antialiased;
8142 -webkit-font-smoothing: antialiased;
8040 -moz-osx-font-smoothing: grayscale;
8143 -moz-osx-font-smoothing: grayscale;
8041 content: "\f016";
8144 content: "\f016";
@@ -9862,10 +9965,9 b' ul#help_menu li a i {'
9862 }
9965 }
9863 .edit_mode_icon:before {
9966 .edit_mode_icon:before {
9864 display: inline-block;
9967 display: inline-block;
9865 font-family: FontAwesome;
9968 font: normal normal normal 14px/1 FontAwesome;
9866 font-style: normal;
9969 font-size: inherit;
9867 font-weight: normal;
9970 text-rendering: auto;
9868 line-height: 1;
9869 -webkit-font-smoothing: antialiased;
9971 -webkit-font-smoothing: antialiased;
9870 -moz-osx-font-smoothing: grayscale;
9972 -moz-osx-font-smoothing: grayscale;
9871 content: "\f040";
9973 content: "\f040";
@@ -9878,10 +9980,9 b' ul#help_menu li a i {'
9878 }
9980 }
9879 .command_mode_icon:before {
9981 .command_mode_icon:before {
9880 display: inline-block;
9982 display: inline-block;
9881 font-family: FontAwesome;
9983 font: normal normal normal 14px/1 FontAwesome;
9882 font-style: normal;
9984 font-size: inherit;
9883 font-weight: normal;
9985 text-rendering: auto;
9884 line-height: 1;
9885 -webkit-font-smoothing: antialiased;
9986 -webkit-font-smoothing: antialiased;
9886 -moz-osx-font-smoothing: grayscale;
9987 -moz-osx-font-smoothing: grayscale;
9887 content: ' ';
9988 content: ' ';
@@ -9894,10 +9995,9 b' ul#help_menu li a i {'
9894 }
9995 }
9895 .kernel_idle_icon:before {
9996 .kernel_idle_icon:before {
9896 display: inline-block;
9997 display: inline-block;
9897 font-family: FontAwesome;
9998 font: normal normal normal 14px/1 FontAwesome;
9898 font-style: normal;
9999 font-size: inherit;
9899 font-weight: normal;
10000 text-rendering: auto;
9900 line-height: 1;
9901 -webkit-font-smoothing: antialiased;
10001 -webkit-font-smoothing: antialiased;
9902 -moz-osx-font-smoothing: grayscale;
10002 -moz-osx-font-smoothing: grayscale;
9903 content: "\f10c";
10003 content: "\f10c";
@@ -9910,10 +10010,9 b' ul#help_menu li a i {'
9910 }
10010 }
9911 .kernel_busy_icon:before {
10011 .kernel_busy_icon:before {
9912 display: inline-block;
10012 display: inline-block;
9913 font-family: FontAwesome;
10013 font: normal normal normal 14px/1 FontAwesome;
9914 font-style: normal;
10014 font-size: inherit;
9915 font-weight: normal;
10015 text-rendering: auto;
9916 line-height: 1;
9917 -webkit-font-smoothing: antialiased;
10016 -webkit-font-smoothing: antialiased;
9918 -moz-osx-font-smoothing: grayscale;
10017 -moz-osx-font-smoothing: grayscale;
9919 content: "\f111";
10018 content: "\f111";
@@ -9926,10 +10025,9 b' ul#help_menu li a i {'
9926 }
10025 }
9927 .kernel_dead_icon:before {
10026 .kernel_dead_icon:before {
9928 display: inline-block;
10027 display: inline-block;
9929 font-family: FontAwesome;
10028 font: normal normal normal 14px/1 FontAwesome;
9930 font-style: normal;
10029 font-size: inherit;
9931 font-weight: normal;
10030 text-rendering: auto;
9932 line-height: 1;
9933 -webkit-font-smoothing: antialiased;
10031 -webkit-font-smoothing: antialiased;
9934 -moz-osx-font-smoothing: grayscale;
10032 -moz-osx-font-smoothing: grayscale;
9935 content: "\f1e2";
10033 content: "\f1e2";
@@ -9942,10 +10040,9 b' ul#help_menu li a i {'
9942 }
10040 }
9943 .kernel_disconnected_icon:before {
10041 .kernel_disconnected_icon:before {
9944 display: inline-block;
10042 display: inline-block;
9945 font-family: FontAwesome;
10043 font: normal normal normal 14px/1 FontAwesome;
9946 font-style: normal;
10044 font-size: inherit;
9947 font-weight: normal;
10045 text-rendering: auto;
9948 line-height: 1;
9949 -webkit-font-smoothing: antialiased;
10046 -webkit-font-smoothing: antialiased;
9950 -moz-osx-font-smoothing: grayscale;
10047 -moz-osx-font-smoothing: grayscale;
9951 content: "\f127";
10048 content: "\f127";
General Comments 0
You need to be logged in to leave comments. Login now