Skip to content

Instantly share code, notes, and snippets.

@mjau-mjau
mjau-mjau / web.config
Last active May 24, 2020 13:59
X3 web.config for Microsoft IIS server
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<!-- Prevent web access to all files in the /config/ directory -->
<security>
<requestFiltering>
<hiddenSegments>
<add segment="config" />
</hiddenSegments>
@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',