test12
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Selected elements :after | |
*/ | |
pre{ | |
position: relative; | |
padding: 10px 50px 10px 10px; | |
border-radius:10px; | |
background-color: #2f2d2a; | |
border: 2px solid #333; | |
font-size: 12px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* CheckBox Hack | |
*/ | |
.field-container{ | |
display:table; | |
margin: 150px auto; | |
background-color: rgba(30,70,150,0.5); | |
padding:10px; | |
} | |
.checkbox-fuction{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* CheckBox Hack | |
*/ | |
.field-container{ | |
position:relative; | |
display:table; | |
margin: 150px auto; | |
background-color: rgba(30,70,150,0.5); | |
padding:10px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* jQuery selectbox plugin | |
* | |
* Copyright (c) 2007 Sadri Sahraoui (brainfault.com) | |
* Licensed under the GPL license and MIT: | |
* http://www.opensource.org/licenses/GPL-license.php | |
* http://www.opensource.org/licenses/mit-license.php | |
* | |
* The code is inspired from Autocomplete plugin (http://www.dyve.net/jquery/?autocomplete) | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* SelectBox hack | |
*/ | |
body{ | |
background-color: rgba(30,70,150,0.5); | |
font-family:Arial; | |
} | |
.cnt{ | |
width:200px; | |
margin:150px auto; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* True Grid | |
*/ | |
/* -------------------------------- *\ | |
$TRUE_GRID $TBG | |
\* -------------------------------- */ | |
.row-true-grid { width: 100%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } | |
.row-true-grid:before, | |
.row-true-grid:after { display: table; line-height: 0; content: ""; } /* Clearfix */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Greek village sign | |
*/ | |
.ntabela { | |
margin:50px auto; | |
width: 200px; | |
-webkit-transform: rotate(-5deg); | |
-moz-transform: rotate(-5deg); | |
transform: rotate(-5deg); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* A simple javascript app template; | |
*/ | |
// assuming your app is called app | |
var app = { | |
settings: { | |
example : true, | |
example2: '' | |
}, | |
myfunction: function(){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* A simple javascript function template; | |
*/ | |
// Define the function | |
var functionName = function(args){ | |
var options; | |
var exec; | |
if (typeof arguments[0] == "object") { | |
options = arguments[0]; |