Skip to content

Commit abe79e3

Browse files
author
Raffael Tancman
committed
incluindo nova home da pythonrio e reorganizando urls
1 parent e2ca1d4 commit abe79e3

File tree

100 files changed

+18809
-123
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+18809
-123
lines changed

assets/static/css/bootstrap.css

+6,566
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/static/css/bootstrap.min.css

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/static/css/style.css

+643
Large diffs are not rendered by default.

assets/static/fonts/font-awesome/css/font-awesome.css

+2,337
Large diffs are not rendered by default.

assets/static/fonts/font-awesome/css/font-awesome.min.css

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.
Binary file not shown.

assets/static/fonts/font-awesome/fonts/fontawesome-webfont.svg

+2,671
Loading
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
// Animated Icons
2+
// --------------------------
3+
4+
.@{fa-css-prefix}-spin {
5+
-webkit-animation: fa-spin 2s infinite linear;
6+
animation: fa-spin 2s infinite linear;
7+
}
8+
9+
.@{fa-css-prefix}-pulse {
10+
-webkit-animation: fa-spin 1s infinite steps(8);
11+
animation: fa-spin 1s infinite steps(8);
12+
}
13+
14+
@-webkit-keyframes fa-spin {
15+
0% {
16+
-webkit-transform: rotate(0deg);
17+
transform: rotate(0deg);
18+
}
19+
100% {
20+
-webkit-transform: rotate(359deg);
21+
transform: rotate(359deg);
22+
}
23+
}
24+
25+
@keyframes fa-spin {
26+
0% {
27+
-webkit-transform: rotate(0deg);
28+
transform: rotate(0deg);
29+
}
30+
100% {
31+
-webkit-transform: rotate(359deg);
32+
transform: rotate(359deg);
33+
}
34+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// Bordered & Pulled
2+
// -------------------------
3+
4+
.@{fa-css-prefix}-border {
5+
padding: .2em .25em .15em;
6+
border: solid .08em @fa-border-color;
7+
border-radius: .1em;
8+
}
9+
10+
.pull-right { float: right; }
11+
.pull-left { float: left; }
12+
13+
.@{fa-css-prefix} {
14+
&.pull-left { margin-right: .3em; }
15+
&.pull-right { margin-left: .3em; }
16+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// Base Class Definition
2+
// -------------------------
3+
4+
.@{fa-css-prefix} {
5+
display: inline-block;
6+
font: normal normal normal @fa-font-size-base/1 FontAwesome; // shortening font declaration
7+
font-size: inherit; // can't have font-size inherit on line above, so need to override
8+
text-rendering: auto; // optimizelegibility throws things off #1094
9+
-webkit-font-smoothing: antialiased;
10+
-moz-osx-font-smoothing: grayscale;
11+
transform: translate(0, 0); // ensures no half-pixel rendering in firefox
12+
13+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// Fixed Width Icons
2+
// -------------------------
3+
.@{fa-css-prefix}-fw {
4+
width: (18em / 14);
5+
text-align: center;
6+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/*!
2+
* Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
3+
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4+
*/
5+
6+
@import "variables.less";
7+
@import "mixins.less";
8+
@import "path.less";
9+
@import "core.less";
10+
@import "larger.less";
11+
@import "fixed-width.less";
12+
@import "list.less";
13+
@import "bordered-pulled.less";
14+
@import "animated.less";
15+
@import "rotated-flipped.less";
16+
@import "stacked.less";
17+
@import "icons.less";

assets/static/fonts/font-awesome/less/icons.less

+596
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// Icon Sizes
2+
// -------------------------
3+
4+
/* makes the font 33% larger relative to the icon container */
5+
.@{fa-css-prefix}-lg {
6+
font-size: (4em / 3);
7+
line-height: (3em / 4);
8+
vertical-align: -15%;
9+
}
10+
.@{fa-css-prefix}-2x { font-size: 2em; }
11+
.@{fa-css-prefix}-3x { font-size: 3em; }
12+
.@{fa-css-prefix}-4x { font-size: 4em; }
13+
.@{fa-css-prefix}-5x { font-size: 5em; }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// List Icons
2+
// -------------------------
3+
4+
.@{fa-css-prefix}-ul {
5+
padding-left: 0;
6+
margin-left: @fa-li-width;
7+
list-style-type: none;
8+
> li { position: relative; }
9+
}
10+
.@{fa-css-prefix}-li {
11+
position: absolute;
12+
left: -@fa-li-width;
13+
width: @fa-li-width;
14+
top: (2em / 14);
15+
text-align: center;
16+
&.@{fa-css-prefix}-lg {
17+
left: (-@fa-li-width + (4em / 14));
18+
}
19+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// Mixins
2+
// --------------------------
3+
4+
.fa-icon() {
5+
display: inline-block;
6+
font: normal normal normal @fa-font-size-base/1 FontAwesome; // shortening font declaration
7+
font-size: inherit; // can't have font-size inherit on line above, so need to override
8+
text-rendering: auto; // optimizelegibility throws things off #1094
9+
-webkit-font-smoothing: antialiased;
10+
-moz-osx-font-smoothing: grayscale;
11+
transform: translate(0, 0); // ensures no half-pixel rendering in firefox
12+
13+
}
14+
15+
.fa-icon-rotate(@degrees, @rotation) {
16+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation);
17+
-webkit-transform: rotate(@degrees);
18+
-ms-transform: rotate(@degrees);
19+
transform: rotate(@degrees);
20+
}
21+
22+
.fa-icon-flip(@horiz, @vert, @rotation) {
23+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation, mirror=1);
24+
-webkit-transform: scale(@horiz, @vert);
25+
-ms-transform: scale(@horiz, @vert);
26+
transform: scale(@horiz, @vert);
27+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/* FONT PATH
2+
* -------------------------- */
3+
4+
@font-face {
5+
font-family: 'FontAwesome';
6+
src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}');
7+
src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'),
8+
url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'),
9+
url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'),
10+
url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'),
11+
url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg');
12+
// src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
13+
font-weight: normal;
14+
font-style: normal;
15+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// Rotated & Flipped Icons
2+
// -------------------------
3+
4+
.@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); }
5+
.@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); }
6+
.@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); }
7+
8+
.@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); }
9+
.@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); }
10+
11+
// Hook for IE8-9
12+
// -------------------------
13+
14+
:root .@{fa-css-prefix}-rotate-90,
15+
:root .@{fa-css-prefix}-rotate-180,
16+
:root .@{fa-css-prefix}-rotate-270,
17+
:root .@{fa-css-prefix}-flip-horizontal,
18+
:root .@{fa-css-prefix}-flip-vertical {
19+
filter: none;
20+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// Stacked Icons
2+
// -------------------------
3+
4+
.@{fa-css-prefix}-stack {
5+
position: relative;
6+
display: inline-block;
7+
width: 2em;
8+
height: 2em;
9+
line-height: 2em;
10+
vertical-align: middle;
11+
}
12+
.@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x {
13+
position: absolute;
14+
left: 0;
15+
width: 100%;
16+
text-align: center;
17+
}
18+
.@{fa-css-prefix}-stack-1x { line-height: inherit; }
19+
.@{fa-css-prefix}-stack-2x { font-size: 2em; }
20+
.@{fa-css-prefix}-inverse { color: @fa-inverse; }

0 commit comments

Comments
 (0)