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 / index.html
Created November 12, 2012 21:51
A CodePen by Maux Webmaster. Menus Collections with CSS - Some cool menus with just CSS. Thanks to Codrops Link of reference: http://goo.gl/QodXi
<div class="content">
<div id="menu1">
<ul>
<li>
<a href="#">
<span class="title">Home</span>
<span class="exp">Welcome</span>
</a>
</li>
<li>
@Maux
Maux / index.html
Created November 28, 2012 16:01
A CodePen by Maux Webmaster. Another Responsive Slider with CSS3 without JS - Another Responsive Slider with CSS3 without JS Inspired by 'CSScience'. Original creation by Ian Hansson. --- (https://twitter.com/teapoted) Example Page: --- (http://csscien
<div class="content">
<h1>Another Responsive Slider with CSS3 without JS</h1>
<input type="radio" id="slide1" name="slider" checked>
<input type="radio" id="slide2" name="slider">
<input type="radio" id="slide3" name="slider">
<input type="radio" id="slide4" name="slider">
<input type="radio" id="slide5" name="slider">
<div class="slides">
<div class="overflow">
<div class="inner">
@Maux
Maux / index.html
Created December 30, 2016 02:46
Only CSS3 Dropdown Menu
<div class="container">
<h1 class="title">Dropdown Menu</h1>
<ul>
<li class="dropdown">
<input type="checkbox" />
<a href="#" data-toggle="dropdown">First Menu</a>
<ul class="dropdown-menu">
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Services</a></li>
@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"}
@Maux
Maux / a-simple-dropdown-menu.markdown
Created December 30, 2016 03:12
A simple Dropdown Menu
@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 / fixed-aspect-ratio-video-embeds-padding-trick.markdown
Created May 27, 2017 03:40
Fixed aspect ratio video embeds - padding trick
@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 / 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 / 10-stylish-hover-effects-with-less.markdown
Created July 10, 2018 16:20
10 stylish hover effects with less