jekyll-theme-experiment 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/_includes/footer.html +16 -0
- data/_includes/head.html +7 -0
- data/_includes/header.html +16 -0
- data/_includes/portfolio.html +30 -0
- data/_includes/tools.html +13 -0
- data/_layouts/about.html +24 -0
- data/_layouts/blog.html +21 -0
- data/_layouts/default.html +8 -0
- data/_layouts/page.html +5 -0
- data/_layouts/post.html +15 -0
- data/_sass/experiment/_layout.scss +42 -0
- data/_sass/experiment/_reset.scss +131 -0
- data/_sass/experiment/_syntax-highlighting.scss +71 -0
- data/_sass/experiment/modules/_avatar.scss +14 -0
- data/_sass/experiment/modules/_content_tools.scss +14 -0
- data/_sass/experiment/modules/_hr.scss +17 -0
- data/_sass/experiment/modules/_information-box.scss +8 -0
- data/_sass/experiment/modules/_navbar.scss +22 -0
- data/_sass/experiment/modules/_post.scss +22 -0
- data/_sass/experiment/modules/_project_portafolio.scss +222 -0
- data/_sass/experiment/sprite.png +0 -0
- data/_sass/experiment/sprite_2.png +0 -0
- data/_sass/experiment/sprite_2@2x.png +0 -0
- data/_sass/experiment.scss +46 -0
- data/assets/example.png +0 -0
- data/assets/fontawesome/css/fa-svg-with-js.css +343 -0
- data/assets/fontawesome/js/fa-brands.js +453 -0
- data/assets/fontawesome/js/fa-brands.min.js +5 -0
- data/assets/fontawesome/js/fa-regular.js +239 -0
- data/assets/fontawesome/js/fa-regular.min.js +5 -0
- data/assets/fontawesome/js/fa-solid.js +606 -0
- data/assets/fontawesome/js/fa-solid.min.js +5 -0
- data/assets/fontawesome/js/fa-v4-shims.js +89 -0
- data/assets/fontawesome/js/fa-v4-shims.min.js +5 -0
- data/assets/fontawesome/js/fontawesome-all.js +3081 -0
- data/assets/fontawesome/js/fontawesome-all.min.js +5 -0
- data/assets/fontawesome/js/fontawesome.js +1795 -0
- data/assets/fontawesome/js/fontawesome.min.js +5 -0
- data/assets/icons/angularjs/angularjs-original-wordmark.svg +1 -0
- data/assets/icons/angularjs/angularjs-original.svg +1 -0
- data/assets/icons/angularjs/angularjs-plain-wordmark.svg +1 -0
- data/assets/icons/angularjs/angularjs-plain.svg +1 -0
- data/assets/icons/angularjs/angularjs.eps +0 -0
- data/assets/icons/bitbucket/bitbucket-original-wordmark.svg +1 -0
- data/assets/icons/bitbucket/bitbucket-original.svg +1 -0
- data/assets/icons/bitbucket/bitbucket.eps +0 -0
- data/assets/icons/express/express-original-wordmark.svg +1 -0
- data/assets/icons/express/express-original.svg +1 -0
- data/assets/icons/express/express.eps +0 -0
- data/assets/icons/git/git-original-wordmark.svg +1 -0
- data/assets/icons/git/git-original.svg +1 -0
- data/assets/icons/git/git-plain-wordmark.svg +1 -0
- data/assets/icons/git/git-plain.svg +1 -0
- data/assets/icons/git/git.eps +0 -0
- data/assets/icons/github/github-original-wordmark.svg +1 -0
- data/assets/icons/github/github-original.svg +1 -0
- data/assets/icons/github/github.eps +0 -0
- data/assets/icons/heroku/heroku-original-wordmark.svg +1 -0
- data/assets/icons/heroku/heroku-original.svg +1 -0
- data/assets/icons/heroku/heroku-plain-wordmark.svg +1 -0
- data/assets/icons/heroku/heroku-plain.svg +1 -0
- data/assets/icons/heroku/heroku.eps +0 -0
- data/assets/main.scss +11 -0
- metadata +150 -0
@@ -0,0 +1,222 @@
|
|
1
|
+
$transition-duration: 0.5s;
|
2
|
+
$transition-delay: 0.05s;
|
3
|
+
|
4
|
+
.item-container-project {
|
5
|
+
background-color: $background-color;
|
6
|
+
margin: $spacing-unit;
|
7
|
+
width: 400px;
|
8
|
+
height: 285px;
|
9
|
+
@media screen and (max-width: $on-phone) {
|
10
|
+
width: 300px;
|
11
|
+
height: 180px;
|
12
|
+
}
|
13
|
+
|
14
|
+
.item-project {
|
15
|
+
height: 215px;
|
16
|
+
@media screen and (max-width: $on-phone) {
|
17
|
+
height: 115px;
|
18
|
+
}
|
19
|
+
|
20
|
+
img {
|
21
|
+
display: block;
|
22
|
+
width: 100%;
|
23
|
+
}
|
24
|
+
}
|
25
|
+
|
26
|
+
.content-hamburger-menu {
|
27
|
+
width: 400px;
|
28
|
+
height: 285px;
|
29
|
+
box-shadow: 0 0 1em $grey-color;
|
30
|
+
position: relative;
|
31
|
+
top: -215px;
|
32
|
+
overflow: hidden;
|
33
|
+
@media screen and (max-width: $on-phone) {
|
34
|
+
height: 180px;
|
35
|
+
top: -115px;
|
36
|
+
width: 300px;
|
37
|
+
}
|
38
|
+
|
39
|
+
.information-project {
|
40
|
+
width: 100%;
|
41
|
+
height: 70px;
|
42
|
+
background-color: $purple-color;
|
43
|
+
display: block;
|
44
|
+
bottom: 0px;
|
45
|
+
position: absolute;
|
46
|
+
@media screen and (max-width: $on-phone) {
|
47
|
+
height: 30px;
|
48
|
+
}
|
49
|
+
h3 {
|
50
|
+
color: $brand-color;
|
51
|
+
text-align: end;
|
52
|
+
margin: 15px 15px 0 0;
|
53
|
+
@media screen and (max-width: $on-phone) {
|
54
|
+
font-size: 17px;
|
55
|
+
margin: 0 5px 0 0;
|
56
|
+
}
|
57
|
+
}
|
58
|
+
}
|
59
|
+
|
60
|
+
@for $i from 1 through $projects {
|
61
|
+
#toggle-#{$i} {
|
62
|
+
position: absolute;
|
63
|
+
visibility: hidden;
|
64
|
+
}
|
65
|
+
|
66
|
+
// Styles for the 'open' state, if the checkbox is checked
|
67
|
+
#toggle-#{$i}:checked {
|
68
|
+
// Any element you need to change the style if menu is open goes here, using the sibling selector (~) as follows
|
69
|
+
// Making the "X" icon using `:before` and `:after` pseudo-elements
|
70
|
+
& ~ .toggle-container .button-toggle {
|
71
|
+
box-shadow: 0 0 0 450px $purple-color-transparent, inset 0 0 0 20px $purple-color-transparent;
|
72
|
+
&:before {
|
73
|
+
transform: translateY(50%) rotate(45deg) scale(1);
|
74
|
+
}
|
75
|
+
&:after {
|
76
|
+
transform: translateY(-50%) rotate(-45deg) scale(1);
|
77
|
+
}
|
78
|
+
}
|
79
|
+
|
80
|
+
// Open nav
|
81
|
+
& ~ .nav {
|
82
|
+
background: transparent;
|
83
|
+
pointer-events: all;
|
84
|
+
transform: translate(130px, -130px);
|
85
|
+
// Restoring nav items from "lines" in the menu icon
|
86
|
+
.nav-item {
|
87
|
+
font-size: 20px;
|
88
|
+
color: $brand-color;
|
89
|
+
letter-spacing: 0;
|
90
|
+
height: 40px;
|
91
|
+
line-height: 40px;
|
92
|
+
margin-top: 0;
|
93
|
+
opacity: 1;
|
94
|
+
transform: scaleY(1);
|
95
|
+
transition: $transition-duration, opacity 0.1s;
|
96
|
+
|
97
|
+
&:hover {
|
98
|
+
color: $grey-color-light;
|
99
|
+
}
|
100
|
+
// Hiding the lines
|
101
|
+
&:before {
|
102
|
+
opacity: 0;
|
103
|
+
}
|
104
|
+
}
|
105
|
+
}
|
106
|
+
}
|
107
|
+
}
|
108
|
+
|
109
|
+
.button-toggle {
|
110
|
+
position: absolute;
|
111
|
+
top: 215px;
|
112
|
+
display: inline-block;
|
113
|
+
width: 20px;
|
114
|
+
height: 20px;
|
115
|
+
margin: 25px;
|
116
|
+
background-color: transparent;
|
117
|
+
border: none;
|
118
|
+
cursor: pointer;
|
119
|
+
border-radius: 100%;
|
120
|
+
transition: $transition-duration + 0.1;
|
121
|
+
z-index: 1;
|
122
|
+
@media screen and (max-width: 400px) {
|
123
|
+
top: 128px;
|
124
|
+
}
|
125
|
+
|
126
|
+
// Making the "X" icon using `:before` and `:after` pseudo-elements
|
127
|
+
// Initially hidden because `scale(0)` transformation
|
128
|
+
|
129
|
+
&:before, &:after {
|
130
|
+
position: absolute;
|
131
|
+
content: '';
|
132
|
+
top: 50%;
|
133
|
+
left: 0;
|
134
|
+
width: 100%;
|
135
|
+
height: 2px;
|
136
|
+
background-color: $brand-color;
|
137
|
+
border-radius: 5px;
|
138
|
+
transition: $transition-duration;
|
139
|
+
}
|
140
|
+
|
141
|
+
&:before {
|
142
|
+
transform: translateY(50%) rotate(45deg) scale(0);
|
143
|
+
}
|
144
|
+
|
145
|
+
&:after {
|
146
|
+
transform: translateY(-50%) rotate(-45deg) scale(0);
|
147
|
+
}
|
148
|
+
}
|
149
|
+
|
150
|
+
.nav {
|
151
|
+
display: inline-block;
|
152
|
+
position: relative;
|
153
|
+
top: 215px;
|
154
|
+
margin: 25px 25px 20px;
|
155
|
+
// Don't want pointer-events as menu is closed
|
156
|
+
pointer-events: none;
|
157
|
+
transition: $transition-duration;
|
158
|
+
z-index: 1;
|
159
|
+
@media screen and (max-width: 400px) {
|
160
|
+
top: 132px;
|
161
|
+
}
|
162
|
+
|
163
|
+
// Showing nav items as lines, making up the hamburger menu icon
|
164
|
+
.nav-item {
|
165
|
+
position: relative;
|
166
|
+
display: inline-block;
|
167
|
+
float: left;
|
168
|
+
clear: both;
|
169
|
+
color: transparent;
|
170
|
+
font-size: 14px;
|
171
|
+
letter-spacing: -6.2px;
|
172
|
+
height: 7px;
|
173
|
+
line-height: 7px;
|
174
|
+
text-transform: uppercase;
|
175
|
+
white-space: nowrap;
|
176
|
+
transform: scaleY(0.2);
|
177
|
+
transition: $transition-duration, opacity 1s;
|
178
|
+
|
179
|
+
// Setting delays for the nav items in close transition
|
180
|
+
@for $i from 1 through $items {
|
181
|
+
&:nth-child(#{$i}) {
|
182
|
+
$delay: ($i - 1) * $transition-delay;
|
183
|
+
transition-delay: $delay;
|
184
|
+
&:before {
|
185
|
+
transition-delay: $delay;
|
186
|
+
}
|
187
|
+
}
|
188
|
+
}
|
189
|
+
|
190
|
+
// Adjusting width for the first line
|
191
|
+
&:nth-child(1) {
|
192
|
+
letter-spacing: -8px;
|
193
|
+
}
|
194
|
+
|
195
|
+
// Adjusting width for the second line
|
196
|
+
&:nth-child(2) {
|
197
|
+
letter-spacing: -7px;
|
198
|
+
}
|
199
|
+
|
200
|
+
// Adjusting from the fourth element onwards
|
201
|
+
&:nth-child(n + 4) {
|
202
|
+
letter-spacing: -8px;
|
203
|
+
margin-top: -7px;
|
204
|
+
opacity: 0;
|
205
|
+
}
|
206
|
+
|
207
|
+
// Getting the lines for the hamburger menu icon
|
208
|
+
&:before {
|
209
|
+
position: absolute;
|
210
|
+
content: '';
|
211
|
+
top: 50%;
|
212
|
+
left: 0;
|
213
|
+
width: 100%;
|
214
|
+
height: 2px;
|
215
|
+
background-color: $brand-color;
|
216
|
+
transform: translateY(-50%) scaleY(5);
|
217
|
+
transition: $transition-duration;
|
218
|
+
}
|
219
|
+
}
|
220
|
+
}
|
221
|
+
}
|
222
|
+
}
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,46 @@
|
|
1
|
+
@charset "utf-8";
|
2
|
+
|
3
|
+
// Define defaults for each variable.
|
4
|
+
|
5
|
+
$base-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
|
6
|
+
$base-font-size: 16px !default;
|
7
|
+
$base-font-weight: 400 !default;
|
8
|
+
$small-font-size: $base-font-size * 0.875 !default;
|
9
|
+
$base-line-height: 1.5 !default;
|
10
|
+
|
11
|
+
$spacing-unit: 30px !default;
|
12
|
+
|
13
|
+
$text-color: #111 !default;
|
14
|
+
$background-color: #fdfdfd !default;
|
15
|
+
$brand-color: #EC7263!default;
|
16
|
+
|
17
|
+
$grey-color: #828282 !default;
|
18
|
+
$grey-color-light: lighten($grey-color, 40%) !default;
|
19
|
+
$grey-color-dark: darken($grey-color, 25%) !default;
|
20
|
+
|
21
|
+
$purple-color: rgb(70,50,76);
|
22
|
+
$purple-color-transparent: rgba(70,50,76,0.9);
|
23
|
+
// $table-text-align: left !default;
|
24
|
+
|
25
|
+
//Width of the content area
|
26
|
+
$content-width: 800px !default;
|
27
|
+
//
|
28
|
+
$on-phone: 400px !default;
|
29
|
+
$on-palm: 600px !default;
|
30
|
+
$on-laptop: 800px !default;
|
31
|
+
|
32
|
+
|
33
|
+
// Import partials.
|
34
|
+
@import
|
35
|
+
"experiment/reset",
|
36
|
+
"experiment/syntax-highlighting",
|
37
|
+
"experiment/layout",
|
38
|
+
//componentes
|
39
|
+
"experiment/modules/information-box",
|
40
|
+
"experiment/modules/navbar",
|
41
|
+
"experiment/modules/avatar",
|
42
|
+
"experiment/modules/project_portafolio",
|
43
|
+
"experiment/modules/content_tools",
|
44
|
+
"experiment/modules/post",
|
45
|
+
"experiment/modules/hr"
|
46
|
+
;
|
data/assets/example.png
ADDED
Binary file
|
@@ -0,0 +1,343 @@
|
|
1
|
+
/*!
|
2
|
+
* Font Awesome Free 5.0.6 by @fontawesome - http://fontawesome.com
|
3
|
+
* License - http://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
4
|
+
*/
|
5
|
+
svg:not(:root).svg-inline--fa {
|
6
|
+
overflow: visible; }
|
7
|
+
|
8
|
+
.svg-inline--fa {
|
9
|
+
display: inline-block;
|
10
|
+
font-size: inherit;
|
11
|
+
height: 1em;
|
12
|
+
overflow: visible;
|
13
|
+
vertical-align: -.125em; }
|
14
|
+
.svg-inline--fa.fa-lg {
|
15
|
+
vertical-align: -.225em; }
|
16
|
+
.svg-inline--fa.fa-w-1 {
|
17
|
+
width: 0.0625em; }
|
18
|
+
.svg-inline--fa.fa-w-2 {
|
19
|
+
width: 0.125em; }
|
20
|
+
.svg-inline--fa.fa-w-3 {
|
21
|
+
width: 0.1875em; }
|
22
|
+
.svg-inline--fa.fa-w-4 {
|
23
|
+
width: 0.25em; }
|
24
|
+
.svg-inline--fa.fa-w-5 {
|
25
|
+
width: 0.3125em; }
|
26
|
+
.svg-inline--fa.fa-w-6 {
|
27
|
+
width: 0.375em; }
|
28
|
+
.svg-inline--fa.fa-w-7 {
|
29
|
+
width: 0.4375em; }
|
30
|
+
.svg-inline--fa.fa-w-8 {
|
31
|
+
width: 0.5em; }
|
32
|
+
.svg-inline--fa.fa-w-9 {
|
33
|
+
width: 0.5625em; }
|
34
|
+
.svg-inline--fa.fa-w-10 {
|
35
|
+
width: 0.625em; }
|
36
|
+
.svg-inline--fa.fa-w-11 {
|
37
|
+
width: 0.6875em; }
|
38
|
+
.svg-inline--fa.fa-w-12 {
|
39
|
+
width: 0.75em; }
|
40
|
+
.svg-inline--fa.fa-w-13 {
|
41
|
+
width: 0.8125em; }
|
42
|
+
.svg-inline--fa.fa-w-14 {
|
43
|
+
width: 0.875em; }
|
44
|
+
.svg-inline--fa.fa-w-15 {
|
45
|
+
width: 0.9375em; }
|
46
|
+
.svg-inline--fa.fa-w-16 {
|
47
|
+
width: 1em; }
|
48
|
+
.svg-inline--fa.fa-w-17 {
|
49
|
+
width: 1.0625em; }
|
50
|
+
.svg-inline--fa.fa-w-18 {
|
51
|
+
width: 1.125em; }
|
52
|
+
.svg-inline--fa.fa-w-19 {
|
53
|
+
width: 1.1875em; }
|
54
|
+
.svg-inline--fa.fa-w-20 {
|
55
|
+
width: 1.25em; }
|
56
|
+
.svg-inline--fa.fa-pull-left {
|
57
|
+
margin-right: .3em;
|
58
|
+
width: auto; }
|
59
|
+
.svg-inline--fa.fa-pull-right {
|
60
|
+
margin-left: .3em;
|
61
|
+
width: auto; }
|
62
|
+
.svg-inline--fa.fa-border {
|
63
|
+
height: 1.5em; }
|
64
|
+
.svg-inline--fa.fa-li {
|
65
|
+
width: 2em; }
|
66
|
+
.svg-inline--fa.fa-fw {
|
67
|
+
width: 1.25em; }
|
68
|
+
|
69
|
+
.fa-layers svg.svg-inline--fa {
|
70
|
+
bottom: 0;
|
71
|
+
left: 0;
|
72
|
+
margin: auto;
|
73
|
+
position: absolute;
|
74
|
+
right: 0;
|
75
|
+
top: 0; }
|
76
|
+
|
77
|
+
.fa-layers {
|
78
|
+
display: inline-block;
|
79
|
+
height: 1em;
|
80
|
+
position: relative;
|
81
|
+
text-align: center;
|
82
|
+
vertical-align: -.125em;
|
83
|
+
width: 1em; }
|
84
|
+
.fa-layers svg.svg-inline--fa {
|
85
|
+
-webkit-transform-origin: center center;
|
86
|
+
transform-origin: center center; }
|
87
|
+
|
88
|
+
.fa-layers-text, .fa-layers-counter {
|
89
|
+
display: inline-block;
|
90
|
+
position: absolute;
|
91
|
+
text-align: center; }
|
92
|
+
|
93
|
+
.fa-layers-text {
|
94
|
+
left: 50%;
|
95
|
+
top: 50%;
|
96
|
+
-webkit-transform: translate(-50%, -50%);
|
97
|
+
transform: translate(-50%, -50%);
|
98
|
+
-webkit-transform-origin: center center;
|
99
|
+
transform-origin: center center; }
|
100
|
+
|
101
|
+
.fa-layers-counter {
|
102
|
+
background-color: #ff253a;
|
103
|
+
border-radius: 1em;
|
104
|
+
color: #fff;
|
105
|
+
height: 1.5em;
|
106
|
+
line-height: 1;
|
107
|
+
max-width: 5em;
|
108
|
+
min-width: 1.5em;
|
109
|
+
overflow: hidden;
|
110
|
+
padding: .25em;
|
111
|
+
right: 0;
|
112
|
+
text-overflow: ellipsis;
|
113
|
+
top: 0;
|
114
|
+
-webkit-transform: scale(0.25);
|
115
|
+
transform: scale(0.25);
|
116
|
+
-webkit-transform-origin: top right;
|
117
|
+
transform-origin: top right; }
|
118
|
+
|
119
|
+
.fa-layers-bottom-right {
|
120
|
+
bottom: 0;
|
121
|
+
right: 0;
|
122
|
+
top: auto;
|
123
|
+
-webkit-transform: scale(0.25);
|
124
|
+
transform: scale(0.25);
|
125
|
+
-webkit-transform-origin: bottom right;
|
126
|
+
transform-origin: bottom right; }
|
127
|
+
|
128
|
+
.fa-layers-bottom-left {
|
129
|
+
bottom: 0;
|
130
|
+
left: 0;
|
131
|
+
right: auto;
|
132
|
+
top: auto;
|
133
|
+
-webkit-transform: scale(0.25);
|
134
|
+
transform: scale(0.25);
|
135
|
+
-webkit-transform-origin: bottom left;
|
136
|
+
transform-origin: bottom left; }
|
137
|
+
|
138
|
+
.fa-layers-top-right {
|
139
|
+
right: 0;
|
140
|
+
top: 0;
|
141
|
+
-webkit-transform: scale(0.25);
|
142
|
+
transform: scale(0.25);
|
143
|
+
-webkit-transform-origin: top right;
|
144
|
+
transform-origin: top right; }
|
145
|
+
|
146
|
+
.fa-layers-top-left {
|
147
|
+
left: 0;
|
148
|
+
right: auto;
|
149
|
+
top: 0;
|
150
|
+
-webkit-transform: scale(0.25);
|
151
|
+
transform: scale(0.25);
|
152
|
+
-webkit-transform-origin: top left;
|
153
|
+
transform-origin: top left; }
|
154
|
+
|
155
|
+
.fa-lg {
|
156
|
+
font-size: 1.33333em;
|
157
|
+
line-height: 0.75em;
|
158
|
+
vertical-align: -.0667em; }
|
159
|
+
|
160
|
+
.fa-xs {
|
161
|
+
font-size: .75em; }
|
162
|
+
|
163
|
+
.fa-sm {
|
164
|
+
font-size: .875em; }
|
165
|
+
|
166
|
+
.fa-1x {
|
167
|
+
font-size: 1em; }
|
168
|
+
|
169
|
+
.fa-2x {
|
170
|
+
font-size: 2em; }
|
171
|
+
|
172
|
+
.fa-3x {
|
173
|
+
font-size: 3em; }
|
174
|
+
|
175
|
+
.fa-4x {
|
176
|
+
font-size: 4em; }
|
177
|
+
|
178
|
+
.fa-5x {
|
179
|
+
font-size: 5em; }
|
180
|
+
|
181
|
+
.fa-6x {
|
182
|
+
font-size: 6em; }
|
183
|
+
|
184
|
+
.fa-7x {
|
185
|
+
font-size: 7em; }
|
186
|
+
|
187
|
+
.fa-8x {
|
188
|
+
font-size: 8em; }
|
189
|
+
|
190
|
+
.fa-9x {
|
191
|
+
font-size: 9em; }
|
192
|
+
|
193
|
+
.fa-10x {
|
194
|
+
font-size: 10em; }
|
195
|
+
|
196
|
+
.fa-fw {
|
197
|
+
text-align: center;
|
198
|
+
width: 1.25em; }
|
199
|
+
|
200
|
+
.fa-ul {
|
201
|
+
list-style-type: none;
|
202
|
+
margin-left: 2.5em;
|
203
|
+
padding-left: 0; }
|
204
|
+
.fa-ul > li {
|
205
|
+
position: relative; }
|
206
|
+
|
207
|
+
.fa-li {
|
208
|
+
left: -2em;
|
209
|
+
position: absolute;
|
210
|
+
text-align: center;
|
211
|
+
width: 2em;
|
212
|
+
line-height: inherit; }
|
213
|
+
|
214
|
+
.fa-border {
|
215
|
+
border: solid 0.08em #eee;
|
216
|
+
border-radius: .1em;
|
217
|
+
padding: .2em .25em .15em; }
|
218
|
+
|
219
|
+
.fa-pull-left {
|
220
|
+
float: left; }
|
221
|
+
|
222
|
+
.fa-pull-right {
|
223
|
+
float: right; }
|
224
|
+
|
225
|
+
.fa.fa-pull-left,
|
226
|
+
.fas.fa-pull-left,
|
227
|
+
.far.fa-pull-left,
|
228
|
+
.fal.fa-pull-left,
|
229
|
+
.fab.fa-pull-left {
|
230
|
+
margin-right: .3em; }
|
231
|
+
|
232
|
+
.fa.fa-pull-right,
|
233
|
+
.fas.fa-pull-right,
|
234
|
+
.far.fa-pull-right,
|
235
|
+
.fal.fa-pull-right,
|
236
|
+
.fab.fa-pull-right {
|
237
|
+
margin-left: .3em; }
|
238
|
+
|
239
|
+
.fa-spin {
|
240
|
+
-webkit-animation: fa-spin 2s infinite linear;
|
241
|
+
animation: fa-spin 2s infinite linear; }
|
242
|
+
|
243
|
+
.fa-pulse {
|
244
|
+
-webkit-animation: fa-spin 1s infinite steps(8);
|
245
|
+
animation: fa-spin 1s infinite steps(8); }
|
246
|
+
|
247
|
+
@-webkit-keyframes fa-spin {
|
248
|
+
0% {
|
249
|
+
-webkit-transform: rotate(0deg);
|
250
|
+
transform: rotate(0deg); }
|
251
|
+
100% {
|
252
|
+
-webkit-transform: rotate(360deg);
|
253
|
+
transform: rotate(360deg); } }
|
254
|
+
|
255
|
+
@keyframes fa-spin {
|
256
|
+
0% {
|
257
|
+
-webkit-transform: rotate(0deg);
|
258
|
+
transform: rotate(0deg); }
|
259
|
+
100% {
|
260
|
+
-webkit-transform: rotate(360deg);
|
261
|
+
transform: rotate(360deg); } }
|
262
|
+
|
263
|
+
.fa-rotate-90 {
|
264
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
|
265
|
+
-webkit-transform: rotate(90deg);
|
266
|
+
transform: rotate(90deg); }
|
267
|
+
|
268
|
+
.fa-rotate-180 {
|
269
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
|
270
|
+
-webkit-transform: rotate(180deg);
|
271
|
+
transform: rotate(180deg); }
|
272
|
+
|
273
|
+
.fa-rotate-270 {
|
274
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
|
275
|
+
-webkit-transform: rotate(270deg);
|
276
|
+
transform: rotate(270deg); }
|
277
|
+
|
278
|
+
.fa-flip-horizontal {
|
279
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
|
280
|
+
-webkit-transform: scale(-1, 1);
|
281
|
+
transform: scale(-1, 1); }
|
282
|
+
|
283
|
+
.fa-flip-vertical {
|
284
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
|
285
|
+
-webkit-transform: scale(1, -1);
|
286
|
+
transform: scale(1, -1); }
|
287
|
+
|
288
|
+
.fa-flip-horizontal.fa-flip-vertical {
|
289
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
|
290
|
+
-webkit-transform: scale(-1, -1);
|
291
|
+
transform: scale(-1, -1); }
|
292
|
+
|
293
|
+
:root .fa-rotate-90,
|
294
|
+
:root .fa-rotate-180,
|
295
|
+
:root .fa-rotate-270,
|
296
|
+
:root .fa-flip-horizontal,
|
297
|
+
:root .fa-flip-vertical {
|
298
|
+
-webkit-filter: none;
|
299
|
+
filter: none; }
|
300
|
+
|
301
|
+
.fa-stack {
|
302
|
+
display: inline-block;
|
303
|
+
height: 2em;
|
304
|
+
position: relative;
|
305
|
+
width: 2em; }
|
306
|
+
|
307
|
+
.fa-stack-1x,
|
308
|
+
.fa-stack-2x {
|
309
|
+
bottom: 0;
|
310
|
+
left: 0;
|
311
|
+
margin: auto;
|
312
|
+
position: absolute;
|
313
|
+
right: 0;
|
314
|
+
top: 0; }
|
315
|
+
|
316
|
+
.svg-inline--fa.fa-stack-1x {
|
317
|
+
height: 1em;
|
318
|
+
width: 1em; }
|
319
|
+
|
320
|
+
.svg-inline--fa.fa-stack-2x {
|
321
|
+
height: 2em;
|
322
|
+
width: 2em; }
|
323
|
+
|
324
|
+
.fa-inverse {
|
325
|
+
color: #fff; }
|
326
|
+
|
327
|
+
.sr-only {
|
328
|
+
border: 0;
|
329
|
+
clip: rect(0, 0, 0, 0);
|
330
|
+
height: 1px;
|
331
|
+
margin: -1px;
|
332
|
+
overflow: hidden;
|
333
|
+
padding: 0;
|
334
|
+
position: absolute;
|
335
|
+
width: 1px; }
|
336
|
+
|
337
|
+
.sr-only-focusable:active, .sr-only-focusable:focus {
|
338
|
+
clip: auto;
|
339
|
+
height: auto;
|
340
|
+
margin: 0;
|
341
|
+
overflow: visible;
|
342
|
+
position: static;
|
343
|
+
width: auto; }
|