Skip to content

Instantly share code, notes, and snippets.

View hugobaeta's full-sized avatar

Hugo Baeta hugobaeta

View GitHub Profile
@hugobaeta
hugobaeta / gist:4750486
Last active December 12, 2015 09:19
User styles to improve the Academy of Art University online classes pages. It improves readability mostly for the class modules and the UX of the module navigation. Also improves readability in the Discussion area
#course-info {
margin-bottom: 0.5em;
}
#ft.page-foot a:link, #ft.page-foot a:visited {
color: #B20;
}
#hd #global-header {
background: #fff;
@hugobaeta
hugobaeta / SassMeister-input.scss
Created July 10, 2014 16:35
Generated by SassMeister.com.
// ----
// Sass (v3.3.9)
// Compass (v1.0.0.alpha.20)
// ----
// ==========================================================================
// Vertical Rhythm and Modular Scale with Baseline Grid by Justin Metros
// inspired by www.gridlover.net
// ==========================================================================
/**
* navigation.js
*
* Handles toggling the navigation menu for small screens and enables tab
* support for dropdown menus.
*/
( function() {
var container, button, menu, body, links, subMenus;
container = document.getElementById( 'site-navigation' );
@hugobaeta
hugobaeta / admin-colors-redux.txt
Created May 21, 2016 03:10
WordPress Admin Colors List (removed duplicates and alphabetized)
#000
#006505
#006799
#0073aa
#0074a2
#0085ba
#008ec2
#008EC2
#00a0d2
#00b9eb
@hugobaeta
hugobaeta / fadein.css
Created July 25, 2017 21:51
Page loading fade-in
@keyframes fadein {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
/* Each element you want to fade in in sequence should have a incremental delay in the animation - more here: https://developer.mozilla.org/en-US/docs/Web/CSS/animation */
# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
# editor.onDidSave ->