- The script must have the extension .bat or .cmd
- The commands are case-insensitive. You could either use
ECHOorecho
titleset the window name for the BAT fileechoprints a statement
| # $('.drink li').hover(function() { | |
| # $(this).find('span').show(); | |
| # }, function() { | |
| # $(this).find('span').hide(); | |
| # }); | |
| $('.drink li').hover( | |
| -> | |
| $(@).find('span').show() | |
| -> | |
| $(@).find('span').hide() |
| #sign-up input[type="submit"] { | |
| float: right; | |
| margin-bottom: 10px; | |
| margin-right: 10px; | |
| padding: 8px 15px; | |
| font: bold 12px "DroidSansBold", Verdana, sans-serif; | |
| text-transform: uppercase; | |
| line-height: 1; | |
| color: #fff; | |
| border: none; |
| .news-post { | |
| margin-top: 6px; | |
| padding: 5px 0 5px 10px; | |
| width: 285px; | |
| -webkit-border-top-right-radius: 10px; | |
| -webkit-border-bottom-right-radius: 10px; | |
| -moz-border-radius-topright: 10px; | |
| -moz-border-radius-bottomright: 10px; | |
| border-top-right-radius: 10px; | |
| border-bottom-right-radius: 10px; |
| @mixin respond-to($val, $query){ | |
| @media ($val : $query){ | |
| @content | |
| } | |
| } | |
| // Usage | |
| .example{ | |
| @include respond-to(min-width, 900px){ | |
| float: none; |
| %group { | |
| zoom: 1; | |
| &:before, | |
| &:after { | |
| content: ''; | |
| display: table; | |
| } | |
| &:after { | |
| clear: both; | |
| } |
| /* clearfix */ | |
| .group:before, | |
| .group:after { | |
| content: ""; | |
| display: table; | |
| } | |
| .group:after { | |
| clear: both; | |
| } |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| Version 2, December 2004 | |
| Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE> | |
| Everyone is permitted to copy and distribute verbatim or modified | |
| copies of this license document, and changing it is allowed as long | |
| as the name is changed. | |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
| <!doctype html> | |
| <html lang='en'> | |
| <head> | |
| <meta charset='utf-8'> | |
| <title></title> | |
| </head> | |
| <body> | |
| <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script> | |
| </body> |