Skip to content

Instantly share code, notes, and snippets.

View luboingeli's full-sized avatar

Lubomir Ingeli luboingeli

  • Slovakia
  • 08:25 (UTC +02:00)
View GitHub Profile
@alairock
alairock / styles.less
Last active October 3, 2019 15:49
Atom.io custom styling.
/*
* Your Stylesheet
*
* This stylesheet is loaded when Atom starts up and is reloaded automatically
* when it is changed.
*
* If you are unfamiliar with LESS, you can read more about it here:
* http://www.lesscss.org
*/
@mrdavefoy
mrdavefoy / custom-css-design-build-web.css
Last active February 19, 2019 17:09
Design Build Web custom CSS
/* Custom CSS by Dave Foy - https://www.designbuildweb.co - hello@designbuildweb.co */
/* Use the same method of sizing elements as Elementor does */
body * {
box-sizing: border-box;
}
/* Elementor - set some default left and right padding on mobile - same as in GeneratePress */
.elementor-top-section.elementor-section-boxed > .elementor-container {
padding: 0 20px;
@mrdavefoy
mrdavefoy / subheading-spacing.css
Last active April 11, 2019 13:03
CSS for subheading spacing
/* Subheading spacing */
p + h2,
ul + h2,
ol + h2 {
margin-top: 1.5em;
margin-bottom: 0.5em;
}