Skip to content

Commit

Permalink
change hilited color on headers
Browse files Browse the repository at this point in the history
  • Loading branch information
t1m0n committed Nov 28, 2015
1 parent af0fc72 commit 3eaabf8
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 6 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
# Air Datepicker

Lightweight modern jQuery datepicker, built with es5 and css-flexbox. Works in all modern browsers.
Lightweight cross browser jQuery datepicker, built with es5 and css-flexbox. Works in all modern browsers.

## Install
```
bower i --save-dev air-datepicker
```

## Usage
```javascript
$('.my-datepicker').datepicker([options])
```

## Demo and docs
[Demo]()

Expand Down
1 change: 1 addition & 0 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"node_modules",
"bower_components",
"tasks",
"docs",
"page",
"package.json",
"gulpfile.js",
Expand Down
2 changes: 1 addition & 1 deletion docs/css/style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/index-ru.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html><html><head><title>Air Datepicker</title><meta charset="UTF-8"><link href="css/style.css" rel="stylesheet" type="text/css"><link href="css/github-gist.css" rel="stylesheet" type="text/css"><link href="../dist/css/datepicker.min.css" rel="stylesheet" type="text/css"><link href="https://fonts.googleapis.com/css?family=Fira+Sans:400,300,500&amp;subset=latin,cyrillic" rel="stylesheet" type="text/css"><script src="../bower_components/jquery/dist/jquery.min.js"></script><script src="http://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.9.1/highlight.min.js"></script><script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script><script src="../dist/js/datepicker.js"></script><script src="../dist/js/i18n/datepicker.en.js"></script></head><body><div class="wrapper"><main role="main" class="main"><div class="container"><h1 class="promo-header">AIR DATEPICKER<span>легкий кроссбраузерный jQuery календарь</span></h1><p class="-text-center-"><div class="datepicker-here datepicker-promo"></div><script>var $promo = $('.datepicker-promo');
<!DOCTYPE html><html><head><title>Air Datepicker</title><meta charset="UTF-8"><link href="css/style.css" rel="stylesheet" type="text/css"><link href="css/github-gist.css" rel="stylesheet" type="text/css"><link href="../dist/css/datepicker.min.css" rel="stylesheet" type="text/css"><link href="https://fonts.googleapis.com/css?family=Fira+Sans:400,300,500&amp;subset=latin,cyrillic" rel="stylesheet" type="text/css"><script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script><script src="http://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.9.1/highlight.min.js"></script><script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script><script src="../dist/js/datepicker.js"></script><script src="../dist/js/i18n/datepicker.en.js"></script></head><body><div class="wrapper"><main role="main" class="main"><div class="container"><h1 class="promo-header">AIR DATEPICKER<span>легкий кроссбраузерный jQuery календарь</span></h1><p class="-text-center-"><div class="datepicker-here datepicker-promo"></div><script>var $promo = $('.datepicker-promo');

$promo.datepicker()

Expand Down
2 changes: 1 addition & 1 deletion docs/jade/layout.jade
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ html
link(href='css/github-gist.css', rel='stylesheet', type='text/css')
link(href='../dist/css/datepicker.min.css', rel='stylesheet', type='text/css')
link(href='https://fonts.googleapis.com/css?family=Fira+Sans:400,300,500&subset=latin,cyrillic', rel='stylesheet', type='text/css')
script(src='../bower_components/jquery/dist/jquery.min.js')
script(src='https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js')
script(src='http://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.9.1/highlight.min.js')
script(src='http://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js')
script(src='../dist/js/datepicker.js')
Expand Down
5 changes: 3 additions & 2 deletions docs/sass/_docs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ article {

&:after {
content: '';
background: rgba(#FF9A19, .2);
background: rgba(#439cff, .2);
border-radius: 4px;
opacity: 0;
left: -8px;
Expand All @@ -55,12 +55,13 @@ article {
bottom: -4px;
position: absolute;
z-index: -1;
transition: all .3s .7s linear;
transition: all .4s .3s linear;
}

&.-hilited- {
&:after {
opacity: 1;
transition: all .4s .7s linear;
}
}
}
Expand Down

0 comments on commit 3eaabf8

Please sign in to comment.