This file contains 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
$(document).ready(function() { | |
zebraRows('tr:odd td', 'odd'); | |
$('tbody tr').hover(function(){ | |
$(this).find('td').addClass('hovered'); | |
}, function(){ | |
$(this).find('td').removeClass('hovered'); | |
}); | |
//default each row to visible |
This file contains 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
<asp:GridView runat="server" ID="GridView1" CellPadding="4" ForeColor="#333333" GridLines="None" | |
OnRowDataBound="_GridViewLogs_RowDataBound" AutoGenerateDeleteButton="True"> | |
<RowStyle BackColor="#EFF3FB" /> | |
<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" /> | |
<PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" /> | |
<SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" /> | |
<HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" /> | |
<EditRowStyle BackColor="#2461BF" /> | |
<AlternatingRowStyle BackColor="White" /> |
This file contains 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
@import "compass/utilities/sprites/base"; | |
// General Sprite Defaults | |
// You can override them before you import this file. | |
$emblem-sprite-base-class: ".emblem-sprite" !default; | |
$emblem-sprite-dimensions: false !default; | |
$emblem-position: 0% !default; | |
$emblem-spacing: 0 !default; | |
$emblem-repeat: no-repeat !default; |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head lang="en"> | |
<meta charset="utf-8"> | |
<title>GREYnyc boilerplate</title> | |
<link rel="stylesheet" href="css/normalize.css" type="text/css" media="screen"> <!-- Cross browser styling standardization --> | |
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen"> <!-- Custom styling for this page --> | |
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> <!-- Cloud hosted jQuery code --> | |
<script type="text/javascript">window.jQuery || document.write('<script type="text/javascript" src="path/to/your/jquery"><\/script>')</script> <!-- Local jQuery file fallback --> | |
<script src="js/script.js" charset="utf-8"></script> <!-- Custom scripts for this page --> |
This file contains 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
# ============================================================================== | |
# REQUIRED 3RD PARTY COMPASS EXTENSIONS | |
# ============================================================================== | |
require 'susy' | |
# ============================================================================== | |
# COMPASS PROJECT CONFIGURATION | |
# ============================================================================== | |
# Can be `:stand_alone` or `:rails`. Defaults to `:stand_alone`. |
This file contains 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
.rwb1 {background-color: red;} | |
.rwb2 {background-color: yellow;} | |
#container { | |
width: 200px; | |
height: 200px; | |
padding: 10px; | |
margin: 0 auto; | |
text-align: center; | |
} |
This file contains 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
// Define your plugins here, make sure you have `gulp-util`... | |
var gutil = require('gulp-util'); | |
/** | |
* Define dev CLI flag | |
* Run `gulp --dev` | |
*/ | |
var isDev = gutil.env.dev; | |
gulp.task('scripts', function() { |
OlderNewer