Skip to content

Instantly share code, notes, and snippets.

View Maux's full-sized avatar
🇧🇷
/* Hello Word */

Maux Webmaster Maux

🇧🇷
/* Hello Word */
View GitHub Profile
@Maux
Maux / cloudSettings
Last active October 17, 2021 19:56
VSCode Configuration
{"lastUpload":"2021-10-17T19:56:08.781Z","extensionVersion":"v3.4.3"}
/* http://meyerweb.com/eric/tools/css/reset/
v2.0-modified | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
@Maux
Maux / 10-stunning-hover-effects-with-scss.markdown
Created July 10, 2018 16:21
10 stunning hover effects with scss
@Maux
Maux / 10-stylish-hover-effects-with-less.markdown
Created July 10, 2018 16:20
10 stylish hover effects with less
@Maux
Maux / mod_fxValidarCPF.bas
Last active April 27, 2018 13:34
Validação de CPF em VBA - CPF Validation in VBA
Option Explicit
Public Function fxValidarCPF(ByVal CPF As String) As Boolean
'Declaração de variáveis utilizadas na função de validação
Dim arrDigits(1 To 11) As Byte, digtVer1 As Byte, digtVer2 As Byte, i As Byte
Dim sum1 As Integer, sum2 As Integer
Dim tmp As String
'Retira todos caracteres que não são números do valor passado
@Maux
Maux / css-grid-layout-as-masonry-with-dense.markdown
Created July 30, 2017 04:04
CSS Grid layout as masonry with dense

CSS Grid layout as masonry with dense

CSS Grid Layout as masonry with 'grid-auto-flow: dense'.

Look at number of pics and the empty spaces inside grid when initial/dense value changes

Sorry, I don't remember where I saw the idea base of this pen ;-(( Plse, if you know, tell me. Thanks.

A Pen by Kseso on CodePen.

@Maux
Maux / fixed-aspect-ratio-video-embeds-padding-trick.markdown
Created May 27, 2017 03:40
Fixed aspect ratio video embeds - padding trick
@Maux
Maux / index.html
Created December 30, 2016 03:14
Simple, CSS only, responsive menu
<head>
<meta name="viewport" content="width=device-width">
</head>
<div class="wrap">
<span class="decor"></span>
<nav>
<ul class="primary">
<li>
<a href="">Dog</a>
<ul class="sub">
@Maux
Maux / a-simple-dropdown-menu.markdown
Created December 30, 2016 03:12
A simple Dropdown Menu
@Maux
Maux / index.haml
Created December 30, 2016 02:52
Pure CSS Circle Menu
%nav.menu
%input#menu-toggler.menu-toggler{:type => "checkbox", :checked => "checked"}
%label{:for => "menu-toggler"}
%ul
%li.menu-item
%a.fa.fa-facebook{:href => "https://www.facebook.com/", :target => "_blank"}
%li.menu-item
%a.fa.fa-google{:href => "https://www.google.com/", :target => "_blank"}
%li.menu-item
%a.fa.fa-dribbble{:href => "https://dribbble.com/", :target => "_blank"}