This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| div { | |
| @include flex(); //Le dice al div que es flex, es útil porque genera todos los Prefixes para todos los navegadores incluso los que dan problema con flexbox. | |
| @include flex-direction(row); //Crea el flex como row, organiza los elementos uno al lado del otro. | |
| @include flex-direction(column); //Crea el flex como column, organiza los elementos uno arriba del otro. | |
| @include flex-align(center, middle); //Alinea todos los hijos del elemento al centro V y H. | |
| @include flex-align(left, top); //En ROW alinea todos los hijos del elemento a la izquierda y arriba. | |
| //En Column alinea todos los hijos del elemento a la arriba y a la derecha. | |
| //La cosa es flex-align([x-axis], [y-axis]) en row y | |
| //flex-align([y-axis], [x-axis]) en column, sin embargo los valores siguen siendo para | |
| //los primeros: left, center, right, justify, spaced y para los segundos: top, middle, bottom |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @mixin placeholder { | |
| &::-webkit-input-placeholder { | |
| @content | |
| } | |
| &:-moz-placeholder { | |
| @content | |
| } | |
| &::-moz-placeholder { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # The following scss-lint Linters are not yet supported by sass-lint: | |
| # ElsePlacement, PropertyCount, SelectorDepth, UnnecessaryParentReference | |
| # | |
| # The following settings/values are unsupported by sass-lint: | |
| # Linter Indentation, option "allow_non_nested_indentation" | |
| # Linter Indentation, option "character" | |
| # Linter PropertySortOrder, option "separate_groups" | |
| # Linter SpaceBeforeBrace, option "allow_single_line_padding" | |
| files: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "remove-empty-rulesets": true, | |
| "always-semicolon": true, | |
| "color-case": "lower", | |
| "block-indent": " ", | |
| "color-shorthand": false, | |
| "element-case": "lower", | |
| "eof-newline": true, | |
| "leading-zero": true, | |
| "quotes": "single", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # Verify captcha | |
| $post_data = http_build_query( | |
| array( | |
| 'secret' => CAPTCHA_SECRET, | |
| 'response' => $_POST['g-recaptcha-response'], | |
| 'remoteip' => $_SERVER['REMOTE_ADDR'] | |
| ) | |
| ); | |
| $opts = array('http' => |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $app = & JFactory::getApplication(); | |
| $tpath = $this->baseurl.'/templates/'.$app->getTemplate(); |