Skip to content

Instantly share code, notes, and snippets.

View groenewege's full-sized avatar

Gunther Groenewege groenewege

View GitHub Profile
<?php if(!defined('KIRBY')) exit ?>
title:
en: Timeline item
fr: Élément du flux d'activité
de: Neues Element in der Timeline
pages: false
files: true
preview: parent
fields:
@groenewege
groenewege / nl.php
Last active August 29, 2015 14:20 — forked from wietseneven/nl.php
<?php
l::set('your_username', 'Je gebruikersnaam');
l::set('your_password', 'Je wachtwoord');
l::set('log_in', 'Log in');
l::set('log_in_error', 'Ongeldige gebruikersnaam of wachtwoord');
l::set('log_out', 'Log uit');
l::set('contact_us', 'Contact opnemen');
l::set('view', 'Bekijk');
l::set('download', 'Download');
@groenewege
groenewege / gist:3957647
Created October 26, 2012 08:35
css - line input
.line {
display: block;
border: none;
color: #333;
background: transparent;
border-bottom: 1px dotted black;
padding: 5px 2px 0 2px;
}
.line:focus {
@groenewege
groenewege / gist:3957646
Created October 26, 2012 08:34
css - depth input
.depth {
display: block;
border: 1px solid rgba(255,255,255,0.6);
background: linear-gradient(#eee, #fff);
transition: all 0.3s ease-out;
box-shadow:
inset 0 1px 4px rgba(0,0,0,0.4);
padding: 5px;
color: #555;
}
@groenewege
groenewege / gist:3957645
Created October 26, 2012 08:34
css - rounded input
.mac {
display: block;
border: none;
border-radius: 20px;
padding: 5px 8px;
color: #333;
box-shadow:
inset 0 2px 0 rgba(0,0,0,.2),
0 0 4px rgba(0,0,0,0.1);
}
@groenewege
groenewege / gist:3957642
Created October 26, 2012 08:34
css - simple input
.simple-input {
display: block;
padding: 5px;
border: 4px solid #F1B720;
border-radius: 5px;
color: #333;
transition: all 0.3s ease-out;
}
.simple-input:hover {
@groenewege
groenewege / gist:3957636
Created October 26, 2012 08:33
css - inline link 3 (arrow)
.inline-link-3 {
display: inline-block;
position: relative;
padding-left: 6px;
/* Font styles */
text-decoration: none;
color: #6AB3EC;
text-shadow: 0 1px 1px rgba(255,255,255,0.9);
}
@groenewege
groenewege / gist:3957635
Created October 26, 2012 08:32
css - inline link (dashed)
.inline-link-2 {
display: inline-block;
border-bottom: 2px dashed rgba(0,0,0,0.9);
/* Font styles */
text-decoration: none;
color: #777;
}
.inline-link-2:hover {
border-bottom-style: dotted;
@groenewege
groenewege / gist:3957631
Created October 26, 2012 08:32
css - inline link
.inline-link-1 {
display: inline-block;
margin: 0 0.2em;
padding: 3px;
background: #97CAF2;
border-radius: 2px;
transition: all 0.3s ease-out;
/* Font styles */
text-decoration: none;
font-weight: bold;
@groenewege
groenewege / gist:3957629
Created October 26, 2012 08:31
css - rounded corners
div[class*="rounded"] {
background: #fca1cc;
}
.light-rounded {
border-radius: 3px;
}
.heavy-rounded {
border-radius: 8px;