Skip to content

Instantly share code, notes, and snippets.

@mjau-mjau
mjau-mjau / .htaccess
Last active May 30, 2017 08:27
Apache deny access to directory
# Deny access to all files in folder
<IfModule mod_authz_core.c>
Require all denied
</IfModule>
<IfModule !mod_authz_core.c>
Order deny,allow
Deny from all
</IfModule>
@mjau-mjau
mjau-mjau / page.yml
Created February 26, 2015 04:10
mjau-mjau.com/about
title: About mjau-mjau
label: About
description: Information about website mjau-mjau.com and author Karl Ward.
layout: narrower text-center
context: items:title,content
gallery: hide
content: |
---
<div class='row text-left'>
<div class='medium-6 columns'>
@mjau-mjau
mjau-mjau / x3.banner-rotate.css
Last active August 29, 2015 14:10
X3 Banner Rotate
.page-banner {
text-align: center;
}
.page-banner img {
opacity: 1;
width: auto;
}
@mjau-mjau
mjau-mjau / custom fonts with veinjs
Created October 5, 2014 15:56
Custom font styles in X3 with veinjs
;(function ($, window, document, undefined) {
"use strict";
var cssEl = {
'body' : 'body, .button, h1, h2, h3, h4, .h5, h6',
'logo' : '.nav .logo',
'menu' : '.menu',
'topbar' : 'body[class*="topbar"] .menu > li > a',
'sidebar' : 'body[class*="sidebar"] .menu > li > a',
'header' : '.main h1,.main h2,.main h3,.main h4,.main h5,.main h6',