├── img ├── .gitignore ├── bg.png ├── bg.psd ├── send.png ├── send.psd ├── nav_bg.png ├── nav_bg.psd ├── page_bg.png ├── page_bg.psd ├── sprites.png ├── sprites.psd ├── air_mail.png ├── air_mail.psd ├── modal_bg.png ├── modal_bg.psd ├── page_head.png ├── page_head.psd ├── curtain_bottom.png ├── curtain_bottom.psd ├── curtain_panel.png └── curtain_panel.psd ├── .gitattributes ├── favicon.ico ├── fonts ├── QUEENS.TTF ├── QUEENS_.TTF ├── QUEENS_I.TTF ├── Carnevalee Freakshow.ttf ├── WhiteVinegar-Regular.ttf ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.svg ├── apple-touch-icon.png ├── bin ├── X86 │ ├── sqlceca40.dll │ ├── sqlceme40.dll │ ├── sqlceqp40.dll │ ├── sqlcese40.dll │ ├── sqlceer40EN.dll │ ├── sqlcecompact40.dll │ └── Microsoft.VC90.CRT │ │ ├── msvcr90.dll │ │ ├── README_ENU.txt │ │ └── Microsoft.VC90.CRT.manifest ├── AMD64 │ ├── sqlceca40.dll │ ├── sqlceer40EN.dll │ ├── sqlceme40.dll │ ├── sqlceqp40.dll │ ├── sqlcese40.dll │ ├── sqlcecompact40.dll │ └── Microsoft.VC90.CRT │ │ ├── msvcr90.dll │ │ ├── README_ENU.txt │ │ └── Microsoft.VC90.CRT.manifest ├── System.Data.SqlServerCe.dll └── System.Data.SqlServerCe.Entity │ └── System.Data.SqlServerCe.Entity.dll ├── App_Data └── Wedding Site.sdf ├── robots.txt ├── template-html-boiler.ico ├── apple-touch-icon-precomposed.png ├── apple-touch-icon-114x114-precomposed.png ├── apple-touch-icon-57x57-precomposed.png ├── apple-touch-icon-72x72-precomposed.png ├── web.config ├── .gitignore ├── crossdomain.xml ├── js ├── plugins.js ├── script.js ├── libs │ └── modernizr-2.5.3.min.js └── bootstrap.min.js ├── humans.txt ├── readme.md ├── 404.html ├── food.html ├── party.html ├── ceremony.html ├── index.html ├── entertainment.html ├── css ├── bootstrap-theme.min.css ├── bootstrap-theme.css └── style.css └── .htaccess /img/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /img/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/img/bg.png -------------------------------------------------------------------------------- /img/bg.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/img/bg.psd -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/favicon.ico -------------------------------------------------------------------------------- /img/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/img/send.png -------------------------------------------------------------------------------- /img/send.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/img/send.psd -------------------------------------------------------------------------------- /img/nav_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/img/nav_bg.png -------------------------------------------------------------------------------- /img/nav_bg.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/img/nav_bg.psd -------------------------------------------------------------------------------- /img/page_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/img/page_bg.png -------------------------------------------------------------------------------- /img/page_bg.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/img/page_bg.psd -------------------------------------------------------------------------------- /img/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/img/sprites.png -------------------------------------------------------------------------------- /img/sprites.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/img/sprites.psd -------------------------------------------------------------------------------- /fonts/QUEENS.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/fonts/QUEENS.TTF -------------------------------------------------------------------------------- /fonts/QUEENS_.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/fonts/QUEENS_.TTF -------------------------------------------------------------------------------- /img/air_mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/img/air_mail.png -------------------------------------------------------------------------------- /img/air_mail.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/img/air_mail.psd -------------------------------------------------------------------------------- /img/modal_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/img/modal_bg.png -------------------------------------------------------------------------------- /img/modal_bg.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/img/modal_bg.psd -------------------------------------------------------------------------------- /img/page_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/img/page_head.png -------------------------------------------------------------------------------- /img/page_head.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/img/page_head.psd -------------------------------------------------------------------------------- /apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/apple-touch-icon.png -------------------------------------------------------------------------------- /fonts/QUEENS_I.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/fonts/QUEENS_I.TTF -------------------------------------------------------------------------------- /bin/X86/sqlceca40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/bin/X86/sqlceca40.dll -------------------------------------------------------------------------------- /bin/X86/sqlceme40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/bin/X86/sqlceme40.dll -------------------------------------------------------------------------------- /bin/X86/sqlceqp40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/bin/X86/sqlceqp40.dll -------------------------------------------------------------------------------- /bin/X86/sqlcese40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/bin/X86/sqlcese40.dll -------------------------------------------------------------------------------- /img/curtain_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/img/curtain_bottom.png -------------------------------------------------------------------------------- /img/curtain_bottom.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/img/curtain_bottom.psd -------------------------------------------------------------------------------- /img/curtain_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/img/curtain_panel.png -------------------------------------------------------------------------------- /img/curtain_panel.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/img/curtain_panel.psd -------------------------------------------------------------------------------- /App_Data/Wedding Site.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/App_Data/Wedding Site.sdf -------------------------------------------------------------------------------- /bin/AMD64/sqlceca40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/bin/AMD64/sqlceca40.dll -------------------------------------------------------------------------------- /bin/AMD64/sqlceer40EN.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/bin/AMD64/sqlceer40EN.dll -------------------------------------------------------------------------------- /bin/AMD64/sqlceme40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/bin/AMD64/sqlceme40.dll -------------------------------------------------------------------------------- /bin/AMD64/sqlceqp40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/bin/AMD64/sqlceqp40.dll -------------------------------------------------------------------------------- /bin/AMD64/sqlcese40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/bin/AMD64/sqlcese40.dll -------------------------------------------------------------------------------- /bin/X86/sqlceer40EN.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/bin/X86/sqlceer40EN.dll -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | # www.robotstxt.org/ 2 | # http://code.google.com/web/controlcrawlindex/ 3 | 4 | User-agent: * 5 | -------------------------------------------------------------------------------- /template-html-boiler.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/template-html-boiler.ico -------------------------------------------------------------------------------- /bin/X86/sqlcecompact40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/bin/X86/sqlcecompact40.dll -------------------------------------------------------------------------------- /bin/AMD64/sqlcecompact40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/bin/AMD64/sqlcecompact40.dll -------------------------------------------------------------------------------- /fonts/Carnevalee Freakshow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/fonts/Carnevalee Freakshow.ttf -------------------------------------------------------------------------------- /fonts/WhiteVinegar-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/fonts/WhiteVinegar-Regular.ttf -------------------------------------------------------------------------------- /apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /bin/System.Data.SqlServerCe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/bin/System.Data.SqlServerCe.dll -------------------------------------------------------------------------------- /apple-touch-icon-114x114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/apple-touch-icon-114x114-precomposed.png -------------------------------------------------------------------------------- /apple-touch-icon-57x57-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/apple-touch-icon-57x57-precomposed.png -------------------------------------------------------------------------------- /apple-touch-icon-72x72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/apple-touch-icon-72x72-precomposed.png -------------------------------------------------------------------------------- /bin/AMD64/Microsoft.VC90.CRT/msvcr90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/bin/AMD64/Microsoft.VC90.CRT/msvcr90.dll -------------------------------------------------------------------------------- /bin/X86/Microsoft.VC90.CRT/msvcr90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/bin/X86/Microsoft.VC90.CRT/msvcr90.dll -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /bin/X86/Microsoft.VC90.CRT/README_ENU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/bin/X86/Microsoft.VC90.CRT/README_ENU.txt -------------------------------------------------------------------------------- /bin/AMD64/Microsoft.VC90.CRT/README_ENU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/bin/AMD64/Microsoft.VC90.CRT/README_ENU.txt -------------------------------------------------------------------------------- /bin/System.Data.SqlServerCe.Entity/System.Data.SqlServerCe.Entity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jjp12383.github.io/master/bin/System.Data.SqlServerCe.Entity/System.Data.SqlServerCe.Entity.dll -------------------------------------------------------------------------------- /web.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Numerous always-ignore extensions 2 | *.diff 3 | *.err 4 | *.orig 5 | *.log 6 | *.rej 7 | *.swo 8 | *.swp 9 | *.vi 10 | *~ 11 | *.sass-cache 12 | 13 | # OS or Editor folders 14 | .DS_Store 15 | Thumbs.db 16 | .cache 17 | .project 18 | .settings 19 | .tmproj 20 | *.esproj 21 | nbproject 22 | *.sublime-project 23 | *.sublime-workspace 24 | 25 | # Dreamweaver added files 26 | _notes 27 | dwsync.xml 28 | 29 | # Komodo 30 | *.komodoproject 31 | .komodotools 32 | 33 | # Folders to ignore 34 | .hg 35 | .svn 36 | .CVS 37 | intermediate 38 | publish 39 | .idea 40 | 41 | # build script local files 42 | build/buildinfo.properties 43 | build/config/buildinfo.properties 44 | -------------------------------------------------------------------------------- /crossdomain.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 19 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /js/plugins.js: -------------------------------------------------------------------------------- 1 | // usage: log('inside coolFunc', this, arguments); 2 | // paulirish.com/2009/log-a-lightweight-wrapper-for-consolelog/ 3 | window.log = function f(){ log.history = log.history || []; log.history.push(arguments); if(this.console) { var args = arguments, newarr; args.callee = args.callee.caller; newarr = [].slice.call(args); if (typeof console.log === 'object') log.apply.call(console.log, console, newarr); else console.log.apply(console, newarr);}}; 4 | 5 | // make it safe to use console.log always 6 | (function(a){function b(){}for(var c="assert,count,debug,dir,dirxml,error,exception,group,groupCollapsed,groupEnd,info,log,markTimeline,profile,profileEnd,time,timeEnd,trace,warn".split(","),d;!!(d=c.pop());){a[d]=a[d]||b;}}) 7 | (function(){try{console.log();return window.console;}catch(a){return (window.console={});}}()); 8 | 9 | 10 | // place any jQuery/helper plugins in here, instead of separate, slower script files. 11 | 12 | -------------------------------------------------------------------------------- /humans.txt: -------------------------------------------------------------------------------- 1 | /* the humans responsible & colophon */ 2 | /* humanstxt.org */ 3 | 4 | 5 | /* TEAM */ 6 | : 7 | Site: 8 | Twitter: 9 | Location: 10 | 11 | /* THANKS */ 12 | Names (& URL): 13 | 14 | /* SITE */ 15 | Standards: HTML5, CSS3 16 | Components: Modernizr, jQuery 17 | Software: 18 | 19 | 20 | 21 | -o/- 22 | +oo//- 23 | :ooo+//: 24 | -ooooo///- 25 | /oooooo//: 26 | :ooooooo+//- 27 | -+oooooooo///- 28 | -://////////////+oooooooooo++////////////:: 29 | :+ooooooooooooooooooooooooooooooooooooo+:::- 30 | -/+ooooooooooooooooooooooooooooooo+/::////:- 31 | -:+oooooooooooooooooooooooooooo/::///////:- 32 | --/+ooooooooooooooooooooo+::://////:- 33 | -:+ooooooooooooooooo+:://////:-- 34 | /ooooooooooooooooo+//////:- 35 | -ooooooooooooooooooo////- 36 | /ooooooooo+oooooooooo//: 37 | :ooooooo+/::/+oooooooo+//- 38 | -oooooo/::///////+oooooo///- 39 | /ooo+::://////:---:/+oooo//: 40 | -o+/::///////:- -:/+o+//- 41 | :-:///////:- -:/:// 42 | -////:- --//: 43 | -- -: 44 | -------------------------------------------------------------------------------- /bin/X86/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | +CXED+6HzJlSphyMNOn27ujadC0= MyKED+9DyS+1XcMeaC0Zlw2vFZ0= EeyDE7og6WoPd2oBhYbMEnpFHhY= 6 | -------------------------------------------------------------------------------- /bin/AMD64/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Vy8CgQgbu3qH5JHTK0op4kR8114= QTJu3Gttpt8hhCktGelNeXj4Yp8= 1ruqF7/L+m1tqnJVscaOtNRNHIE= 6 | -------------------------------------------------------------------------------- /js/script.js: -------------------------------------------------------------------------------- 1 | $(window).load(function () { 2 | $('.right-curtain, .left-curtain').animate({ width: "0"}, 1000, function () { 3 | $('.curtain').css('display', 'none'); 4 | }); 5 | }); 6 | 7 | $(document).ready(function () { 8 | var window_h = $(window).height(); 9 | $('.main').height(window_h); 10 | }); 11 | 12 | $(window).resize(function () { 13 | var window_h = $(window).height(); 14 | $('.main').height(window_h); 15 | }); 16 | 17 | $(document).ready(function () { 18 | $('input[type="radio"]').click(function () { 19 | if ($(this).attr("value") == "boardGame") { 20 | $(".lawn-game").addClass("hidden"); 21 | $(".routine").addClass("hidden"); 22 | $(".music").addClass("hidden"); 23 | $(".board-game").removeClass("hidden"); 24 | $(".send-cont").removeClass("hidden"); 25 | } 26 | if ($(this).attr("value") == "lawnGame") { 27 | $(".board-game").addClass("hidden"); 28 | $(".routine").addClass("hidden"); 29 | $(".music").addClass("hidden"); 30 | $(".lawn-game").removeClass("hidden"); 31 | $(".send-cont").removeClass("hidden"); 32 | } 33 | if ($(this).attr("value") == "music") { 34 | $(".board-game").addClass("hidden"); 35 | $(".routine").addClass("hidden"); 36 | $(".lawn-game").addClass("hidden"); 37 | $(".music").removeClass("hidden"); 38 | $(".send-cont").removeClass("hidden"); 39 | } 40 | if ($(this).attr("value") == "routine") { 41 | $(".board-game").addClass("hidden"); 42 | $(".lawn-game").addClass("hidden"); 43 | $(".music").addClass("hidden"); 44 | $(".routine").removeClass("hidden"); 45 | $(".send-cont").removeClass("hidden"); 46 | } 47 | }); 48 | }); -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # [HTML5 Boilerplate](http://html5boilerplate.com) 2 | 3 | HTML5 Boilerplate is a professional front-end template that helps you build fast, robust, adaptable, and future-proof websites. Spend more time developing and less time reinventing the wheel. 4 | 5 | This project is the product of many years of iterative development and combined community knowledge. It does not impose a specific development philosophy or framework, so you're free to architect your code in the way that you want. 6 | 7 | 8 | ## Quick start 9 | 10 | Clone the git repo - `git clone git://github.com/h5bp/html5-boilerplate.git` - or [download it](https://github.com/h5bp/html5-boilerplate/zipball/master) 11 | 12 | 13 | ## Features 14 | 15 | * HTML5 ready. Use the new elements with confidence. 16 | * Cross-browser compatible (Chrome, Opera, Safari, Firefox 3.6+, IE6+). 17 | * Designed with progressive enhancement in mind. 18 | * CSS normalizations and common bug fixes. 19 | * IE-specific classes for easier cross-browser control. 20 | * A default print stylesheet, performance optimized. 21 | * Mobile browser optimizations. 22 | * Protection against any stray `console.log` causing JavaScript errors in IE6/7. 23 | * The latest jQuery via CDN, with a local fallback. 24 | * A custom Modernizr build for feature detection. 25 | * An optimized Google Analytics snippet. 26 | * Apache server caching, compression, and other configuration defaults for Grade-A performance. 27 | * Cross-domain Ajax and Flash. 28 | * "Delete-key friendly." Easy to strip out parts you don't need. 29 | * Extensive inline and accompanying documentation. 30 | 31 | 32 | ## Contributing 33 | 34 | Anyone and everyone is welcome to [contribute](https://github.com/h5bp/html5-boilerplate/wiki/contribute). Hundreds of developers have helped make the HTML5 Boilerplate what it is today. 35 | 36 | 37 | ## Project information 38 | 39 | * Source: http://github.com/h5bp/html5-boilerplate 40 | * Web: http://html5boilerplate.com 41 | * Docs: http://html5boilerplate.com/docs 42 | * Twitter: http://twitter.com/h5bp 43 | 44 | 45 | ## License 46 | 47 | ### Major components: 48 | 49 | * jQuery: MIT/GPL license 50 | * Modernizr: MIT/BSD license 51 | * Normalize.css: Public Domain 52 | 53 | ### Everything else: 54 | 55 | The Unlicense (aka: public domain) 56 | -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Page Not Found :( 6 | 28 | 29 | 30 |
31 |

Not found :(

32 |

Sorry, but the page you were trying to view does not exist.

33 |

It looks like this was the result of either:

34 |
    35 |
  • a mistyped address
  • 36 |
  • an out-of-date link
  • 37 |
38 | 41 | 42 |
43 | 44 | -------------------------------------------------------------------------------- /food.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | 14 | 15 | Food 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 33 | 35 | 36 | 37 |
38 |
39 |
40 |
41 |
header
42 |
43 | 54 |
55 |
56 |
57 |
58 |
59 |
60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 73 | 79 | 80 | -------------------------------------------------------------------------------- /party.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | 14 | 15 | Party 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 33 | 35 | 36 | 37 |
38 |
39 |
40 |
41 |
header
42 |
43 | 54 |
55 |
56 |
57 |
58 |
59 |
60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 73 | 79 | 80 | -------------------------------------------------------------------------------- /ceremony.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | 14 | 15 | Ceremony 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 33 | 35 | 36 | 37 |
38 |
39 |
40 |
41 |
header
42 |
43 | 54 |
55 |
56 |
57 |
58 |
59 |
60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 73 | 79 | 80 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | 14 | 15 | Halle and Justin 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 33 | 35 | 36 | 37 |
38 |
39 |
40 |
41 |
header
42 |
43 | 54 |
55 |
56 |
57 |
58 |
59 |
60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 73 | 79 | 80 | -------------------------------------------------------------------------------- /entertainment.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | 14 | 15 | Entertainment 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 33 | 35 | 36 | 37 |
38 |
39 |
40 |
41 |
header
42 |
43 | 54 |
55 | Music! Games! Shows! General debauchery! All this and more can be had at this spectacular spectacular! We will provide some basic entertainments such as music and board games, 56 | but this party is about you, our honored guests, as much as it is about us. So in the spirit of you do you, feel free to bring whatever you would like to the party as well! 57 | Do you have a board game you absolutely love? A new routine you have been dying to show off? A playlist that is sure to please? Let us know! Just click the button below to add 58 | your awesome to the list!

59 |
60 | 61 |
62 | 111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 131 | 137 | 138 | 139 | -------------------------------------------------------------------------------- /css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap v3.0.3 (http://getbootstrap.com) 3 | * Copyright 2013 Twitter, Inc. 4 | * Licensed under http://www.apache.org/licenses/LICENSE-2.0 5 | */ 6 | 7 | .btn-default,.btn-primary,.btn-success,.btn-info,.btn-warning,.btn-danger{text-shadow:0 -1px 0 rgba(0,0,0,0.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 1px rgba(0,0,0,0.075)}.btn-default:active,.btn-primary:active,.btn-success:active,.btn-info:active,.btn-warning:active,.btn-danger:active,.btn-default.active,.btn-primary.active,.btn-success.active,.btn-info.active,.btn-warning.active,.btn-danger.active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn:active,.btn.active{background-image:none}.btn-default{text-shadow:0 1px 0 #fff;background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);background-repeat:repeat-x;border-color:#dbdbdb;border-color:#ccc;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe0e0e0',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-default:hover,.btn-default:focus{background-color:#e0e0e0;background-position:0 -15px}.btn-default:active,.btn-default.active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-primary{background-image:-webkit-linear-gradient(top,#428bca 0,#2d6ca2 100%);background-image:linear-gradient(to bottom,#428bca 0,#2d6ca2 100%);background-repeat:repeat-x;border-color:#2b669a;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff2d6ca2',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-primary:hover,.btn-primary:focus{background-color:#2d6ca2;background-position:0 -15px}.btn-primary:active,.btn-primary.active{background-color:#2d6ca2;border-color:#2b669a}.btn-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:linear-gradient(to bottom,#5cb85c 0,#419641 100%);background-repeat:repeat-x;border-color:#3e8f3e;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c',endColorstr='#ff419641',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-success:hover,.btn-success:focus{background-color:#419641;background-position:0 -15px}.btn-success:active,.btn-success.active{background-color:#419641;border-color:#3e8f3e}.btn-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);background-repeat:repeat-x;border-color:#e38d13;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e',endColorstr='#ffeb9316',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-warning:hover,.btn-warning:focus{background-color:#eb9316;background-position:0 -15px}.btn-warning:active,.btn-warning.active{background-color:#eb9316;border-color:#e38d13}.btn-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);background-repeat:repeat-x;border-color:#b92c28;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f',endColorstr='#ffc12e2a',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-danger:hover,.btn-danger:focus{background-color:#c12e2a;background-position:0 -15px}.btn-danger:active,.btn-danger.active{background-color:#c12e2a;border-color:#b92c28}.btn-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);background-repeat:repeat-x;border-color:#28a4c9;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff2aabd2',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-info:hover,.btn-info:focus{background-color:#2aabd2;background-position:0 -15px}.btn-info:active,.btn-info.active{background-color:#2aabd2;border-color:#28a4c9}.thumbnail,.img-thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.075);box-shadow:0 1px 2px rgba(0,0,0,0.075)}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{background-color:#e8e8e8;background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5',endColorstr='#ffe8e8e8',GradientType=0)}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{background-color:#357ebd;background-image:-webkit-linear-gradient(top,#428bca 0,#357ebd 100%);background-image:linear-gradient(to bottom,#428bca 0,#357ebd 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff357ebd',GradientType=0)}.navbar-default{background-image:-webkit-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:linear-gradient(to bottom,#fff 0,#f8f8f8 100%);background-repeat:repeat-x;border-radius:4px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#fff8f8f8',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 5px rgba(0,0,0,0.075);box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 5px rgba(0,0,0,0.075)}.navbar-default .navbar-nav>.active>a{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f3f3f3 100%);background-image:linear-gradient(to bottom,#ebebeb 0,#f3f3f3 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb',endColorstr='#fff3f3f3',GradientType=0);-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,0.075);box-shadow:inset 0 3px 9px rgba(0,0,0,0.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,0.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:linear-gradient(to bottom,#3c3c3c 0,#222 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c',endColorstr='#ff222222',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.navbar-inverse .navbar-nav>.active>a{background-image:-webkit-linear-gradient(top,#222 0,#282828 100%);background-image:linear-gradient(to bottom,#222 0,#282828 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222',endColorstr='#ff282828',GradientType=0);-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,0.25);box-shadow:inset 0 3px 9px rgba(0,0,0,0.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.navbar-static-top,.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}.alert{text-shadow:0 1px 0 rgba(255,255,255,0.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.25),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 1px 0 rgba(255,255,255,0.25),0 1px 2px rgba(0,0,0,0.05)}.alert-success{background-image:-webkit-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);background-repeat:repeat-x;border-color:#b2dba1;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8',endColorstr='#ffc8e5bc',GradientType=0)}.alert-info{background-image:-webkit-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:linear-gradient(to bottom,#d9edf7 0,#b9def0 100%);background-repeat:repeat-x;border-color:#9acfea;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7',endColorstr='#ffb9def0',GradientType=0)}.alert-warning{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);background-repeat:repeat-x;border-color:#f5e79e;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3',endColorstr='#fff8efc0',GradientType=0)}.alert-danger{background-image:-webkit-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);background-repeat:repeat-x;border-color:#dca7a7;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede',endColorstr='#ffe7c3c3',GradientType=0)}.progress{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:linear-gradient(to bottom,#ebebeb 0,#f5f5f5 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb',endColorstr='#fff5f5f5',GradientType=0)}.progress-bar{background-image:-webkit-linear-gradient(top,#428bca 0,#3071a9 100%);background-image:linear-gradient(to bottom,#428bca 0,#3071a9 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff3071a9',GradientType=0)}.progress-bar-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c',endColorstr='#ff449d44',GradientType=0)}.progress-bar-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff31b0d5',GradientType=0)}.progress-bar-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e',endColorstr='#ffec971f',GradientType=0)}.progress-bar-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f',endColorstr='#ffc9302c',GradientType=0)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.075);box-shadow:0 1px 2px rgba(0,0,0,0.075)}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{text-shadow:0 -1px 0 #3071a9;background-image:-webkit-linear-gradient(top,#428bca 0,#3278b3 100%);background-image:linear-gradient(to bottom,#428bca 0,#3278b3 100%);background-repeat:repeat-x;border-color:#3278b3;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff3278b3',GradientType=0)}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)}.panel-default>.panel-heading{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5',endColorstr='#ffe8e8e8',GradientType=0)}.panel-primary>.panel-heading{background-image:-webkit-linear-gradient(top,#428bca 0,#357ebd 100%);background-image:linear-gradient(to bottom,#428bca 0,#357ebd 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff357ebd',GradientType=0)}.panel-success>.panel-heading{background-image:-webkit-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:linear-gradient(to bottom,#dff0d8 0,#d0e9c6 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8',endColorstr='#ffd0e9c6',GradientType=0)}.panel-info>.panel-heading{background-image:-webkit-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:linear-gradient(to bottom,#d9edf7 0,#c4e3f3 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7',endColorstr='#ffc4e3f3',GradientType=0)}.panel-warning>.panel-heading{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:linear-gradient(to bottom,#fcf8e3 0,#faf2cc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3',endColorstr='#fffaf2cc',GradientType=0)}.panel-danger>.panel-heading{background-image:-webkit-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:linear-gradient(to bottom,#f2dede 0,#ebcccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede',endColorstr='#ffebcccc',GradientType=0)}.well{background-image:-webkit-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:linear-gradient(to bottom,#e8e8e8 0,#f5f5f5 100%);background-repeat:repeat-x;border-color:#dcdcdc;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8',endColorstr='#fff5f5f5',GradientType=0);-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,0.05),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 3px rgba(0,0,0,0.05),0 1px 0 rgba(255,255,255,0.1)} -------------------------------------------------------------------------------- /js/libs/modernizr-2.5.3.min.js: -------------------------------------------------------------------------------- 1 | /* Modernizr 2.5.3 (Custom Build) | MIT & BSD 2 | * Build: http://www.modernizr.com/download/#-fontface-backgroundsize-borderimage-borderradius-boxshadow-flexbox-hsla-multiplebgs-opacity-rgba-textshadow-cssanimations-csscolumns-generatedcontent-cssgradients-cssreflections-csstransforms-csstransforms3d-csstransitions-applicationcache-canvas-canvastext-draganddrop-hashchange-history-audio-video-indexeddb-input-inputtypes-localstorage-postmessage-sessionstorage-websockets-websqldatabase-webworkers-geolocation-inlinesvg-smil-svg-svgclippaths-touch-webgl-shiv-mq-cssclasses-addtest-prefixed-teststyles-testprop-testallprops-hasevent-prefixes-domprefixes-load 3 | */ 4 | ;window.Modernizr=function(a,b,c){function D(a){j.cssText=a}function E(a,b){return D(n.join(a+";")+(b||""))}function F(a,b){return typeof a===b}function G(a,b){return!!~(""+a).indexOf(b)}function H(a,b){for(var d in a)if(j[a[d]]!==c)return b=="pfx"?a[d]:!0;return!1}function I(a,b,d){for(var e in a){var f=b[a[e]];if(f!==c)return d===!1?a[e]:F(f,"function")?f.bind(d||b):f}return!1}function J(a,b,c){var d=a.charAt(0).toUpperCase()+a.substr(1),e=(a+" "+p.join(d+" ")+d).split(" ");return F(b,"string")||F(b,"undefined")?H(e,b):(e=(a+" "+q.join(d+" ")+d).split(" "),I(e,b,c))}function L(){e.input=function(c){for(var d=0,e=c.length;d",a,""].join(""),k.id=h,m.innerHTML+=f,m.appendChild(k),l||(m.style.background="",g.appendChild(m)),i=c(k,a),l?k.parentNode.removeChild(k):m.parentNode.removeChild(m),!!i},z=function(b){var c=a.matchMedia||a.msMatchMedia;if(c)return c(b).matches;var d;return y("@media "+b+" { #"+h+" { position: absolute; } }",function(b){d=(a.getComputedStyle?getComputedStyle(b,null):b.currentStyle)["position"]=="absolute"}),d},A=function(){function d(d,e){e=e||b.createElement(a[d]||"div"),d="on"+d;var f=d in e;return f||(e.setAttribute||(e=b.createElement("div")),e.setAttribute&&e.removeAttribute&&(e.setAttribute(d,""),f=F(e[d],"function"),F(e[d],"undefined")||(e[d]=c),e.removeAttribute(d))),e=null,f}var a={select:"input",change:"input",submit:"form",reset:"form",error:"img",load:"img",abort:"img"};return d}(),B={}.hasOwnProperty,C;!F(B,"undefined")&&!F(B.call,"undefined")?C=function(a,b){return B.call(a,b)}:C=function(a,b){return b in a&&F(a.constructor.prototype[b],"undefined")},Function.prototype.bind||(Function.prototype.bind=function(b){var c=this;if(typeof c!="function")throw new TypeError;var d=w.call(arguments,1),e=function(){if(this instanceof e){var a=function(){};a.prototype=c.prototype;var f=new a,g=c.apply(f,d.concat(w.call(arguments)));return Object(g)===g?g:f}return c.apply(b,d.concat(w.call(arguments)))};return e});var K=function(c,d){var f=c.join(""),g=d.length;y(f,function(c,d){var f=b.styleSheets[b.styleSheets.length-1],h=f?f.cssRules&&f.cssRules[0]?f.cssRules[0].cssText:f.cssText||"":"",i=c.childNodes,j={};while(g--)j[i[g].id]=i[g];e.touch="ontouchstart"in a||a.DocumentTouch&&b instanceof DocumentTouch||(j.touch&&j.touch.offsetTop)===9,e.csstransforms3d=(j.csstransforms3d&&j.csstransforms3d.offsetLeft)===9&&j.csstransforms3d.offsetHeight===3,e.generatedcontent=(j.generatedcontent&&j.generatedcontent.offsetHeight)>=1,e.fontface=/src/i.test(h)&&h.indexOf(d.split(" ")[0])===0},g,d)}(['@font-face {font-family:"font";src:url("https://")}',["@media (",n.join("touch-enabled),("),h,")","{#touch{top:9px;position:absolute}}"].join(""),["@media (",n.join("transform-3d),("),h,")","{#csstransforms3d{left:9px;position:absolute;height:3px;}}"].join(""),['#generatedcontent:after{content:"',l,'";visibility:hidden}'].join("")],["fontface","touch","csstransforms3d","generatedcontent"]);s.flexbox=function(){return J("flexOrder")},s.canvas=function(){var a=b.createElement("canvas");return!!a.getContext&&!!a.getContext("2d")},s.canvastext=function(){return!!e.canvas&&!!F(b.createElement("canvas").getContext("2d").fillText,"function")},s.webgl=function(){try{var d=b.createElement("canvas"),e;e=!(!a.WebGLRenderingContext||!d.getContext("experimental-webgl")&&!d.getContext("webgl")),d=c}catch(f){e=!1}return e},s.touch=function(){return e.touch},s.geolocation=function(){return!!navigator.geolocation},s.postmessage=function(){return!!a.postMessage},s.websqldatabase=function(){return!!a.openDatabase},s.indexedDB=function(){return!!J("indexedDB",a)},s.hashchange=function(){return A("hashchange",a)&&(b.documentMode===c||b.documentMode>7)},s.history=function(){return!!a.history&&!!history.pushState},s.draganddrop=function(){var a=b.createElement("div");return"draggable"in a||"ondragstart"in a&&"ondrop"in a},s.websockets=function(){for(var b=-1,c=p.length;++b",d.insertBefore(c.lastChild,d.firstChild)}function h(){var a=k.elements;return typeof a=="string"?a.split(" "):a}function i(a){var b={},c=a.createElement,e=a.createDocumentFragment,f=e();a.createElement=function(a){var e=(b[a]||(b[a]=c(a))).cloneNode();return k.shivMethods&&e.canHaveChildren&&!d.test(a)?f.appendChild(e):e},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+h().join().replace(/\w+/g,function(a){return b[a]=c(a),f.createElement(a),'c("'+a+'")'})+");return n}")(k,f)}function j(a){var b;return a.documentShived?a:(k.shivCSS&&!e&&(b=!!g(a,"article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio{display:none}canvas,video{display:inline-block;*display:inline;*zoom:1}[hidden]{display:none}audio[controls]{display:inline-block;*display:inline;*zoom:1}mark{background:#FF0;color:#000}")),f||(b=!i(a)),b&&(a.documentShived=b),a)}var c=a.html5||{},d=/^<|^(?:button|form|map|select|textarea)$/i,e,f;(function(){var a=b.createElement("a");a.innerHTML="",e="hidden"in a,f=a.childNodes.length==1||function(){try{b.createElement("a")}catch(a){return!0}var c=b.createDocumentFragment();return typeof c.cloneNode=="undefined"||typeof c.createDocumentFragment=="undefined"||typeof c.createElement=="undefined"}()})();var k={elements:c.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",shivCSS:c.shivCSS!==!1,shivMethods:c.shivMethods!==!1,type:"default",shivDocument:j};a.html5=k,j(b)}(this,b),e._version=d,e._prefixes=n,e._domPrefixes=q,e._cssomPrefixes=p,e.mq=z,e.hasEvent=A,e.testProp=function(a){return H([a])},e.testAllProps=J,e.testStyles=y,e.prefixed=function(a,b,c){return b?J(a,b,c):J(a,"pfx")},g.className=g.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(f?" js "+v.join(" "):""),e}(this,this.document),function(a,b,c){function d(a){return o.call(a)=="[object Function]"}function e(a){return typeof a=="string"}function f(){}function g(a){return!a||a=="loaded"||a=="complete"||a=="uninitialized"}function h(){var a=p.shift();q=1,a?a.t?m(function(){(a.t=="c"?B.injectCss:B.injectJs)(a.s,0,a.a,a.x,a.e,1)},0):(a(),h()):q=0}function i(a,c,d,e,f,i,j){function k(b){if(!o&&g(l.readyState)&&(u.r=o=1,!q&&h(),l.onload=l.onreadystatechange=null,b)){a!="img"&&m(function(){t.removeChild(l)},50);for(var d in y[c])y[c].hasOwnProperty(d)&&y[c][d].onload()}}var j=j||B.errorTimeout,l={},o=0,r=0,u={t:d,s:c,e:f,a:i,x:j};y[c]===1&&(r=1,y[c]=[],l=b.createElement(a)),a=="object"?l.data=c:(l.src=c,l.type=a),l.width=l.height="0",l.onerror=l.onload=l.onreadystatechange=function(){k.call(this,r)},p.splice(e,0,u),a!="img"&&(r||y[c]===2?(t.insertBefore(l,s?null:n),m(k,j)):y[c].push(l))}function j(a,b,c,d,f){return q=0,b=b||"j",e(a)?i(b=="c"?v:u,a,b,this.i++,c,d,f):(p.splice(this.i++,0,a),p.length==1&&h()),this}function k(){var a=B;return a.loader={load:j,i:0},a}var l=b.documentElement,m=a.setTimeout,n=b.getElementsByTagName("script")[0],o={}.toString,p=[],q=0,r="MozAppearance"in l.style,s=r&&!!b.createRange().compareNode,t=s?l:n.parentNode,l=a.opera&&o.call(a.opera)=="[object Opera]",l=!!b.attachEvent&&!l,u=r?"object":l?"script":"img",v=l?"script":u,w=Array.isArray||function(a){return o.call(a)=="[object Array]"},x=[],y={},z={timeout:function(a,b){return b.length&&(a.timeout=b[0]),a}},A,B;B=function(a){function b(a){var a=a.split("!"),b=x.length,c=a.pop(),d=a.length,c={url:c,origUrl:c,prefixes:a},e,f,g;for(f=0;f li > a:hover, 174 | .dropdown-menu > li > a:focus { 175 | background-color: #e8e8e8; 176 | background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); 177 | background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%); 178 | background-repeat: repeat-x; 179 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0); 180 | } 181 | 182 | .dropdown-menu > .active > a, 183 | .dropdown-menu > .active > a:hover, 184 | .dropdown-menu > .active > a:focus { 185 | background-color: #357ebd; 186 | background-image: -webkit-linear-gradient(top, #428bca 0%, #357ebd 100%); 187 | background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%); 188 | background-repeat: repeat-x; 189 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0); 190 | } 191 | 192 | .navbar-default { 193 | background-image: -webkit-linear-gradient(top, #ffffff 0%, #f8f8f8 100%); 194 | background-image: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%); 195 | background-repeat: repeat-x; 196 | border-radius: 4px; 197 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0); 198 | filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); 199 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075); 200 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075); 201 | } 202 | 203 | .navbar-default .navbar-nav > .active > a { 204 | background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f3f3f3 100%); 205 | background-image: linear-gradient(to bottom, #ebebeb 0%, #f3f3f3 100%); 206 | background-repeat: repeat-x; 207 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff3f3f3', GradientType=0); 208 | -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075); 209 | box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075); 210 | } 211 | 212 | .navbar-brand, 213 | .navbar-nav > li > a { 214 | text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25); 215 | } 216 | 217 | .navbar-inverse { 218 | background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222222 100%); 219 | background-image: linear-gradient(to bottom, #3c3c3c 0%, #222222 100%); 220 | background-repeat: repeat-x; 221 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0); 222 | filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); 223 | } 224 | 225 | .navbar-inverse .navbar-nav > .active > a { 226 | background-image: -webkit-linear-gradient(top, #222222 0%, #282828 100%); 227 | background-image: linear-gradient(to bottom, #222222 0%, #282828 100%); 228 | background-repeat: repeat-x; 229 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff282828', GradientType=0); 230 | -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25); 231 | box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25); 232 | } 233 | 234 | .navbar-inverse .navbar-brand, 235 | .navbar-inverse .navbar-nav > li > a { 236 | text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); 237 | } 238 | 239 | .navbar-static-top, 240 | .navbar-fixed-top, 241 | .navbar-fixed-bottom { 242 | border-radius: 0; 243 | } 244 | 245 | .alert { 246 | text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2); 247 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05); 248 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05); 249 | } 250 | 251 | .alert-success { 252 | background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%); 253 | background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%); 254 | background-repeat: repeat-x; 255 | border-color: #b2dba1; 256 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0); 257 | } 258 | 259 | .alert-info { 260 | background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%); 261 | background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%); 262 | background-repeat: repeat-x; 263 | border-color: #9acfea; 264 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0); 265 | } 266 | 267 | .alert-warning { 268 | background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%); 269 | background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%); 270 | background-repeat: repeat-x; 271 | border-color: #f5e79e; 272 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0); 273 | } 274 | 275 | .alert-danger { 276 | background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%); 277 | background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%); 278 | background-repeat: repeat-x; 279 | border-color: #dca7a7; 280 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0); 281 | } 282 | 283 | .progress { 284 | background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%); 285 | background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%); 286 | background-repeat: repeat-x; 287 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0); 288 | } 289 | 290 | .progress-bar { 291 | background-image: -webkit-linear-gradient(top, #428bca 0%, #3071a9 100%); 292 | background-image: linear-gradient(to bottom, #428bca 0%, #3071a9 100%); 293 | background-repeat: repeat-x; 294 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3071a9', GradientType=0); 295 | } 296 | 297 | .progress-bar-success { 298 | background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%); 299 | background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%); 300 | background-repeat: repeat-x; 301 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0); 302 | } 303 | 304 | .progress-bar-info { 305 | background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%); 306 | background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%); 307 | background-repeat: repeat-x; 308 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0); 309 | } 310 | 311 | .progress-bar-warning { 312 | background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%); 313 | background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%); 314 | background-repeat: repeat-x; 315 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0); 316 | } 317 | 318 | .progress-bar-danger { 319 | background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%); 320 | background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%); 321 | background-repeat: repeat-x; 322 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0); 323 | } 324 | 325 | .list-group { 326 | border-radius: 4px; 327 | -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075); 328 | box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075); 329 | } 330 | 331 | .list-group-item.active, 332 | .list-group-item.active:hover, 333 | .list-group-item.active:focus { 334 | text-shadow: 0 -1px 0 #3071a9; 335 | background-image: -webkit-linear-gradient(top, #428bca 0%, #3278b3 100%); 336 | background-image: linear-gradient(to bottom, #428bca 0%, #3278b3 100%); 337 | background-repeat: repeat-x; 338 | border-color: #3278b3; 339 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3278b3', GradientType=0); 340 | } 341 | 342 | .panel { 343 | -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); 344 | box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); 345 | } 346 | 347 | .panel-default > .panel-heading { 348 | background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); 349 | background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%); 350 | background-repeat: repeat-x; 351 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0); 352 | } 353 | 354 | .panel-primary > .panel-heading { 355 | background-image: -webkit-linear-gradient(top, #428bca 0%, #357ebd 100%); 356 | background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%); 357 | background-repeat: repeat-x; 358 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0); 359 | } 360 | 361 | .panel-success > .panel-heading { 362 | background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%); 363 | background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%); 364 | background-repeat: repeat-x; 365 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0); 366 | } 367 | 368 | .panel-info > .panel-heading { 369 | background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%); 370 | background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%); 371 | background-repeat: repeat-x; 372 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0); 373 | } 374 | 375 | .panel-warning > .panel-heading { 376 | background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%); 377 | background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%); 378 | background-repeat: repeat-x; 379 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0); 380 | } 381 | 382 | .panel-danger > .panel-heading { 383 | background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%); 384 | background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%); 385 | background-repeat: repeat-x; 386 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0); 387 | } 388 | 389 | .well { 390 | background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%); 391 | background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%); 392 | background-repeat: repeat-x; 393 | border-color: #dcdcdc; 394 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0); 395 | -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1); 396 | box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1); 397 | } -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | /* 2 | * HTML5 Boilerplate 3 | * 4 | * What follows is the result of much research on cross-browser styling. 5 | * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal, 6 | * Kroc Camen, and the H5BP dev community and team. 7 | * 8 | * Detailed information about this CSS: h5bp.com/css 9 | * 10 | * ==|== normalize ========================================================== 11 | */ 12 | 13 | 14 | /* ============================================================================= 15 | HTML5 display definitions 16 | ========================================================================== */ 17 | 18 | article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; } 19 | audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; } 20 | audio:not([controls]) { display: none; } 21 | [hidden] { display: none; } 22 | 23 | 24 | /* ============================================================================= 25 | Base 26 | ========================================================================== */ 27 | 28 | /* 29 | * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units 30 | * 2. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g 31 | */ 32 | 33 | html { font-size: 100%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; } 34 | 35 | html, button, input, select, textarea { font-family: sans-serif; color: #222; } 36 | 37 | body { margin: 0; font-size: 1em; line-height: 1.4; } 38 | 39 | /* 40 | * Remove text-shadow in selection highlight: h5bp.com/i 41 | * These selection declarations have to be separate 42 | * Also: hot pink! (or customize the background color to match your design) 43 | */ 44 | 45 | ::-moz-selection { background: #fe57a1; color: #fff; text-shadow: none; } 46 | ::selection { background: #fe57a1; color: #fff; text-shadow: none; } 47 | 48 | 49 | /* ============================================================================= 50 | Links 51 | ========================================================================== */ 52 | 53 | a { color: #00e; } 54 | a:visited { color: #551a8b; } 55 | a:hover { color: #06e; } 56 | a:focus { outline: thin dotted; } 57 | 58 | /* Improve readability when focused and hovered in all browsers: h5bp.com/h */ 59 | a:hover, a:active { outline: 0; } 60 | 61 | 62 | /* ============================================================================= 63 | Typography 64 | ========================================================================== */ 65 | 66 | abbr[title] { border-bottom: 1px dotted; } 67 | 68 | b, strong { font-weight: bold; } 69 | 70 | blockquote { margin: 1em 40px; } 71 | 72 | dfn { font-style: italic; } 73 | 74 | hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; } 75 | 76 | ins { background: #ff9; color: #000; text-decoration: none; } 77 | 78 | mark { background: #ff0; color: #000; font-style: italic; font-weight: bold; } 79 | 80 | /* Redeclare monospace font family: h5bp.com/j */ 81 | pre, code, kbd, samp { font-family: monospace, serif; _font-family: 'courier new', monospace; font-size: 1em; } 82 | 83 | /* Improve readability of pre-formatted text in all browsers */ 84 | pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; } 85 | 86 | q { quotes: none; } 87 | q:before, q:after { content: ""; content: none; } 88 | 89 | small { font-size: 85%; } 90 | 91 | /* Position subscript and superscript content without affecting line-height: h5bp.com/k */ 92 | sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } 93 | sup { top: -0.5em; } 94 | sub { bottom: -0.25em; } 95 | 96 | 97 | /* ============================================================================= 98 | Lists 99 | ========================================================================== */ 100 | 101 | ul, ol { margin: 1em 0; padding: 0 0 0 40px; } 102 | dd { margin: 0 0 0 40px; } 103 | nav ul, nav ol { list-style: none; list-style-image: none; margin: 0; padding: 0; } 104 | 105 | 106 | /* ============================================================================= 107 | Embedded content 108 | ========================================================================== */ 109 | 110 | /* 111 | * 1. Improve image quality when scaled in IE7: h5bp.com/d 112 | * 2. Remove the gap between images and borders on image containers: h5bp.com/i/440 113 | */ 114 | 115 | img { border: 0; -ms-interpolation-mode: bicubic; vertical-align: middle; } 116 | 117 | /* 118 | * Correct overflow not hidden in IE9 119 | */ 120 | 121 | svg:not(:root) { overflow: hidden; } 122 | 123 | 124 | /* ============================================================================= 125 | Figures 126 | ========================================================================== */ 127 | 128 | figure { margin: 0; } 129 | 130 | 131 | /* ============================================================================= 132 | Forms 133 | ========================================================================== */ 134 | 135 | form { margin: 0; } 136 | fieldset { border: 0; margin: 0; padding: 0; } 137 | 138 | /* Indicate that 'label' will shift focus to the associated form element */ 139 | label { cursor: pointer; } 140 | 141 | /* 142 | * 1. Correct color not inheriting in IE6/7/8/9 143 | * 2. Correct alignment displayed oddly in IE6/7 144 | */ 145 | 146 | legend { border: 0; *margin-left: -7px; padding: 0; white-space: normal; } 147 | 148 | /* 149 | * 1. Correct font-size not inheriting in all browsers 150 | * 2. Remove margins in FF3/4 S5 Chrome 151 | * 3. Define consistent vertical alignment display in all browsers 152 | */ 153 | 154 | button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; } 155 | 156 | /* 157 | * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet) 158 | */ 159 | 160 | button, input { line-height: normal; } 161 | 162 | /* 163 | * 1. Display hand cursor for clickable form elements 164 | * 2. Allow styling of clickable form elements in iOS 165 | * 3. Correct inner spacing displayed oddly in IE7 (doesn't effect IE6) 166 | */ 167 | 168 | button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; *overflow: visible; } 169 | 170 | /* 171 | * Re-set default cursor for disabled elements 172 | */ 173 | 174 | button[disabled], input[disabled] { cursor: default; } 175 | 176 | /* 177 | * Consistent box sizing and appearance 178 | */ 179 | 180 | input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; *width: 13px; *height: 13px; } 181 | input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; } 182 | input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; } 183 | 184 | /* 185 | * Remove inner padding and border in FF3/4: h5bp.com/l 186 | */ 187 | 188 | button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } 189 | 190 | /* 191 | * 1. Remove default vertical scrollbar in IE6/7/8/9 192 | * 2. Allow only vertical resizing 193 | */ 194 | 195 | textarea { overflow: auto; vertical-align: top; resize: vertical; } 196 | 197 | /* Colors for form validity */ 198 | input:valid, textarea:valid { } 199 | input:invalid, textarea:invalid { background-color: #f0dddd; } 200 | 201 | 202 | /* ============================================================================= 203 | Tables 204 | ========================================================================== */ 205 | 206 | table { border-collapse: collapse; border-spacing: 0; } 207 | td { vertical-align: top; } 208 | 209 | 210 | /* ============================================================================= 211 | Chrome Frame Prompt 212 | ========================================================================== */ 213 | 214 | .chromeframe { margin: 0.2em 0; background: #ccc; color: black; padding: 0.2em 0; } 215 | 216 | 217 | /* ==|== primary styles ===================================================== 218 | Author: 219 | ========================================================================== */ 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | /* ==|== media queries ====================================================== 237 | EXAMPLE Media Query for Responsive Design. 238 | This example overrides the primary ('mobile first') styles 239 | Modify as content requires. 240 | ========================================================================== */ 241 | 242 | @media only screen and (min-width: 35em) { 243 | /* Style adjustments for viewports that meet the condition */ 244 | } 245 | 246 | 247 | 248 | /* ==|== non-semantic helper classes ======================================== 249 | Please define your styles before this section. 250 | ========================================================================== */ 251 | 252 | /* For image replacement */ 253 | .ir { display: block; border: 0; text-indent: -999em; overflow: hidden; background-color: transparent; background-repeat: no-repeat; text-align: left; direction: ltr; *line-height: 0; } 254 | .ir br { display: none; } 255 | 256 | /* Hide from both screenreaders and browsers: h5bp.com/u */ 257 | .hidden { display: none !important; visibility: hidden; } 258 | 259 | /* Hide only visually, but have it available for screenreaders: h5bp.com/v */ 260 | .visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } 261 | 262 | /* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */ 263 | .visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; } 264 | 265 | /* Hide visually and from screenreaders, but maintain layout */ 266 | .invisible { visibility: hidden; } 267 | 268 | /* Contain floats: h5bp.com/q */ 269 | .clearfix:before, .clearfix:after { content: ""; display: table; } 270 | .clearfix:after { clear: both; } 271 | .clearfix { *zoom: 1; } 272 | 273 | 274 | 275 | /* ==|== print styles ======================================================= 276 | Print styles. 277 | Inlined to avoid required HTTP connection: h5bp.com/r 278 | ========================================================================== */ 279 | 280 | @media print { 281 | * { background: transparent !important; color: black !important; box-shadow:none !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } /* Black prints faster: h5bp.com/s */ 282 | a, a:visited { text-decoration: underline; } 283 | a[href]:after { content: " (" attr(href) ")"; } 284 | abbr[title]:after { content: " (" attr(title) ")"; } 285 | .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } /* Don't show links for images, or javascript/internal links */ 286 | pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } 287 | thead { display: table-header-group; } /* h5bp.com/t */ 288 | tr, img { page-break-inside: avoid; } 289 | img { max-width: 100% !important; } 290 | @page { margin: 0.5cm; } 291 | p, h2, h3 { orphans: 3; widows: 3; } 292 | h2, h3 { page-break-after: avoid; } 293 | } 294 | 295 | body 296 | { 297 | background: url('../img/bg.png') #000; 298 | font-family: "wedding2" 299 | } 300 | 301 | .overlay 302 | { 303 | width: 100%; 304 | position: absolute; 305 | top: 0; 306 | left: 0; 307 | background-color: #000; 308 | z-index: 1000 309 | } 310 | 311 | .base 312 | { 313 | position: absolute; 314 | width: 100%; 315 | top: 0; 316 | left: 0 317 | } 318 | 319 | .body-overlay 320 | { 321 | /* IE9 SVG, needs conditional override of 'filter' to 'none' */ 322 | background: -moz-linear-gradient(top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%); /* FF3.6+ */ 323 | background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.9)), color-stop(100%,rgba(0,0,0,0))); /* Chrome,Safari4+ */ 324 | background: -webkit-linear-gradient(top, rgba(0,0,0,0.9) 0%,rgba(0,0,0,0) 100%); /* Chrome10+,Safari5.1+ */ 325 | background: -o-linear-gradient(top, rgba(0,0,0,0.9) 0%,rgba(0,0,0,0) 100%); /* Opera 11.10+ */ 326 | background: -ms-linear-gradient(top, rgba(0,0,0,0.9) 0%,rgba(0,0,0,0) 100%); /* IE10+ */ 327 | background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%,rgba(0,0,0,0) 100%); /* W3C */ 328 | filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6000000', endColorstr='#00000000',GradientType=0 ); /* IE6-8 */ 329 | position: relative; 330 | width: 100%; 331 | height: 100%; 332 | } 333 | 334 | .main 335 | { 336 | width: 1000px; 337 | margin: 0 auto; 338 | height: 800px; 339 | background: url('../img/page_bg.png') repeat-y transparent; 340 | } 341 | 342 | @font-face 343 | { 344 | font-family: wedding; 345 | src: url('../fonts/Carnevalee Freakshow.ttf') 346 | } 347 | 348 | @font-face 349 | { 350 | font-family: wedding2; 351 | src: url('../fonts/QUEENS_.ttf') 352 | } 353 | 354 | .navigation 355 | { 356 | position: relative; 357 | margin: 5px auto; 358 | clear: both; 359 | width: 900px 360 | } 361 | 362 | .navigation ul li 363 | { 364 | display: inline-block; 365 | } 366 | 367 | .navigation ul li.left-hand 368 | { 369 | width: 96px; 370 | height: 51px; 371 | background: url('../img/sprites.png') no-repeat transparent 0 0; 372 | margin-right: 10px; 373 | margin-bottom: -20px 374 | } 375 | 376 | .navigation ul li.right-hand 377 | { 378 | width: 96px; 379 | height: 51px; 380 | background: url('../img/sprites.png') no-repeat transparent 0 -51px; 381 | margin-left: 10px; 382 | margin-bottom: -20px 383 | } 384 | 385 | .navigation ul li a 386 | { 387 | text-transform: uppercase; 388 | text-decoration: none; 389 | font-family: 'wedding2'; 390 | font-size: 19px; 391 | font-weight: bold; 392 | color: #000; 393 | padding: 0 10px 0 10px; 394 | margin-top: -30px 395 | } 396 | 397 | .navigation ul li a:hover 398 | { 399 | color: #cc0000; 400 | } 401 | 402 | .navigation ul li a.active 403 | { 404 | background: url('../img/nav_bg.png') no-repeat bottom; 405 | padding-bottom: 30px 406 | } 407 | 408 | .page-fill 409 | { 410 | position: relative; 411 | margin: 50px 100px 0 100px 412 | } 413 | 414 | .hidden 415 | { 416 | display: none 417 | } 418 | 419 | .show 420 | { 421 | display: block 422 | } 423 | 424 | label 425 | { 426 | font-weight: bold; 427 | margin-right: 5px 428 | } 429 | 430 | input, textarea 431 | { 432 | margin: 5px 5px 0 0; 433 | outline: none; 434 | border: 1px solid #000; 435 | padding: 5px 436 | } 437 | 438 | .routine-desc 439 | { 440 | width: 100% 441 | } 442 | 443 | .send 444 | { 445 | background: none; 446 | border: none; 447 | outline: none; 448 | padding: 0; 449 | margin: 20px 0 0 0 450 | } 451 | 452 | .modal-content { 453 | position: relative; 454 | background: url(../img/air_mail.png) no-repeat top right transparent; 455 | border: 3px solid #000; 456 | border: 3px solid rgba(0, 0, 0, 1); 457 | border-radius: 0; 458 | outline: none; 459 | -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); 460 | box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); 461 | background-clip: padding-box; 462 | font-family: "wedding2" 463 | } 464 | 465 | .modal 466 | { 467 | border: 2px solid #000 468 | } 469 | 470 | .modal-backdrop { 471 | position: fixed; 472 | top: 0; 473 | right: 0; 474 | bottom: 0; 475 | left: 0; 476 | z-index: 1030; 477 | background-color: #000000; 478 | } 479 | 480 | .modal-header { 481 | min-height: 16.428571429px; 482 | padding: 10px 0 10px 0; 483 | margin: 0 15px; 484 | border-bottom: 0 485 | } 486 | 487 | .modal-header .close { 488 | margin-top: -2px; 489 | } 490 | 491 | .modal-title { 492 | margin: 0; 493 | line-height: 1.428571429; 494 | } 495 | 496 | .modal-body { 497 | position: relative; 498 | padding: 20px; 499 | } 500 | 501 | .modal-footer { 502 | padding: 19px 20px 20px; 503 | margin-top: 15px; 504 | text-align: right; 505 | border-top: 0; 506 | } 507 | 508 | h4.modal-title 509 | { 510 | font-family: "wedding2"; 511 | font-weight: bold 512 | } 513 | 514 | .modal-bord 515 | { 516 | padding: 1px; 517 | border: 1px solid #000; 518 | background:url('../img/modal_bg.png') transparent; 519 | } 520 | 521 | .btn { 522 | display: inline-block; 523 | padding: 4px 10px; 524 | margin-bottom: 0; 525 | font-size: 16px; 526 | font-family: "wedding2"; 527 | font-weight: bold; 528 | line-height: 1.428571429; 529 | text-align: center; 530 | white-space: nowrap; 531 | vertical-align: middle; 532 | cursor: pointer; 533 | background: transparent; 534 | border: 2px solid #000; 535 | border-radius: 0; 536 | -webkit-user-select: none; 537 | -moz-user-select: none; 538 | -ms-user-select: none; 539 | -o-user-select: none; 540 | user-select: none; 541 | } 542 | 543 | .btn:hover, 544 | .btn:focus { 545 | color: #cc0000; 546 | text-decoration: none; 547 | } 548 | 549 | .btn-bord 550 | { 551 | padding: 2px; 552 | border: 1px solid #000; 553 | display: inline-block; 554 | } -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | # Apache configuration file 2 | # httpd.apache.org/docs/2.2/mod/quickreference.html 3 | 4 | # Note .htaccess files are an overhead, this logic should be in your Apache config if possible 5 | # httpd.apache.org/docs/2.2/howto/htaccess.html 6 | 7 | # Techniques in here adapted from all over, including: 8 | # Kroc Camen: camendesign.com/.htaccess 9 | # perishablepress.com/press/2006/01/10/stupid-htaccess-tricks/ 10 | # Sample .htaccess file of CMS MODx: modxcms.com 11 | 12 | 13 | ### 14 | ### If you run a webserver other than Apache, consider: 15 | ### github.com/h5bp/server-configs 16 | ### 17 | 18 | 19 | 20 | # ---------------------------------------------------------------------- 21 | # Better website experience for IE users 22 | # ---------------------------------------------------------------------- 23 | 24 | # Force the latest IE version, in various cases when it may fall back to IE7 mode 25 | # github.com/rails/rails/commit/123eb25#commitcomment-118920 26 | # Use ChromeFrame if it's installed for a better experience for the poor IE folk 27 | 28 | 29 | Header set X-UA-Compatible "IE=Edge,chrome=1" 30 | # mod_headers can't match by content-type, but we don't want to send this header on *everything*... 31 | 32 | Header unset X-UA-Compatible 33 | 34 | 35 | 36 | 37 | # ---------------------------------------------------------------------- 38 | # Cross-domain AJAX requests 39 | # ---------------------------------------------------------------------- 40 | 41 | # Serve cross-domain Ajax requests, disabled by default. 42 | # enable-cors.org 43 | # code.google.com/p/html5security/wiki/CrossOriginRequestSecurity 44 | 45 | # 46 | # Header set Access-Control-Allow-Origin "*" 47 | # 48 | 49 | 50 | # ---------------------------------------------------------------------- 51 | # CORS-enabled images (@crossorigin) 52 | # ---------------------------------------------------------------------- 53 | 54 | # Send CORS headers if browsers request them; enabled by default for images. 55 | # developer.mozilla.org/en/CORS_Enabled_Image 56 | # blog.chromium.org/2011/07/using-cross-domain-images-in-webgl-and.html 57 | # hacks.mozilla.org/2011/11/using-cors-to-load-webgl-textures-from-cross-domain-images/ 58 | # wiki.mozilla.org/Security/Reviews/crossoriginAttribute 59 | 60 | 61 | 62 | # mod_headers, y u no match by Content-Type?! 63 | 64 | SetEnvIf Origin ":" IS_CORS 65 | Header set Access-Control-Allow-Origin "*" env=IS_CORS 66 | 67 | 68 | 69 | 70 | 71 | # ---------------------------------------------------------------------- 72 | # Webfont access 73 | # ---------------------------------------------------------------------- 74 | 75 | # Allow access from all domains for webfonts. 76 | # Alternatively you could only whitelist your 77 | # subdomains like "subdomain.example.com". 78 | 79 | 80 | 81 | Header set Access-Control-Allow-Origin "*" 82 | 83 | 84 | 85 | 86 | 87 | # ---------------------------------------------------------------------- 88 | # Proper MIME type for all files 89 | # ---------------------------------------------------------------------- 90 | 91 | 92 | # JavaScript 93 | # Normalize to standard type (it's sniffed in IE anyways) 94 | # tools.ietf.org/html/rfc4329#section-7.2 95 | AddType application/javascript js 96 | 97 | # Audio 98 | AddType audio/ogg oga ogg 99 | AddType audio/mp4 m4a 100 | 101 | # Video 102 | AddType video/ogg ogv 103 | AddType video/mp4 mp4 m4v 104 | AddType video/webm webm 105 | 106 | # SVG 107 | # Required for svg webfonts on iPad 108 | # twitter.com/FontSquirrel/status/14855840545 109 | AddType image/svg+xml svg svgz 110 | AddEncoding gzip svgz 111 | 112 | # Webfonts 113 | AddType application/vnd.ms-fontobject eot 114 | AddType application/x-font-ttf ttf ttc 115 | AddType font/opentype otf 116 | AddType application/x-font-woff woff 117 | 118 | # Assorted types 119 | AddType image/x-icon ico 120 | AddType image/webp webp 121 | AddType text/cache-manifest appcache manifest 122 | AddType text/x-component htc 123 | AddType application/x-chrome-extension crx 124 | AddType application/x-opera-extension oex 125 | AddType application/x-xpinstall xpi 126 | AddType application/octet-stream safariextz 127 | AddType application/x-web-app-manifest+json webapp 128 | AddType text/x-vcard vcf 129 | 130 | 131 | 132 | # ---------------------------------------------------------------------- 133 | # Allow concatenation from within specific js and css files 134 | # ---------------------------------------------------------------------- 135 | 136 | # e.g. Inside of script.combined.js you could have 137 | # 138 | # 139 | # and they would be included into this single file. 140 | 141 | # This is not in use in the boilerplate as it stands. You may 142 | # choose to name your files in this way for this advantage or 143 | # concatenate and minify them manually. 144 | # Disabled by default. 145 | 146 | # 147 | # Options +Includes 148 | # AddOutputFilterByType INCLUDES application/javascript application/json 149 | # SetOutputFilter INCLUDES 150 | # 151 | # 152 | # Options +Includes 153 | # AddOutputFilterByType INCLUDES text/css 154 | # SetOutputFilter INCLUDES 155 | # 156 | 157 | 158 | # ---------------------------------------------------------------------- 159 | # Gzip compression 160 | # ---------------------------------------------------------------------- 161 | 162 | 163 | 164 | # Force deflate for mangled headers developer.yahoo.com/blogs/ydn/posts/2010/12/pushing-beyond-gzipping/ 165 | 166 | 167 | SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)\s*,?\s*)+|[X~-]{4,13}$ HAVE_Accept-Encoding 168 | RequestHeader append Accept-Encoding "gzip,deflate" env=HAVE_Accept-Encoding 169 | 170 | 171 | 172 | # HTML, TXT, CSS, JavaScript, JSON, XML, HTC: 173 | 174 | FilterDeclare COMPRESS 175 | FilterProvider COMPRESS DEFLATE resp=Content-Type $text/html 176 | FilterProvider COMPRESS DEFLATE resp=Content-Type $text/css 177 | FilterProvider COMPRESS DEFLATE resp=Content-Type $text/plain 178 | FilterProvider COMPRESS DEFLATE resp=Content-Type $text/xml 179 | FilterProvider COMPRESS DEFLATE resp=Content-Type $text/x-component 180 | FilterProvider COMPRESS DEFLATE resp=Content-Type $application/javascript 181 | FilterProvider COMPRESS DEFLATE resp=Content-Type $application/json 182 | FilterProvider COMPRESS DEFLATE resp=Content-Type $application/xml 183 | FilterProvider COMPRESS DEFLATE resp=Content-Type $application/xhtml+xml 184 | FilterProvider COMPRESS DEFLATE resp=Content-Type $application/rss+xml 185 | FilterProvider COMPRESS DEFLATE resp=Content-Type $application/atom+xml 186 | FilterProvider COMPRESS DEFLATE resp=Content-Type $application/vnd.ms-fontobject 187 | FilterProvider COMPRESS DEFLATE resp=Content-Type $image/svg+xml 188 | FilterProvider COMPRESS DEFLATE resp=Content-Type $image/x-icon 189 | FilterProvider COMPRESS DEFLATE resp=Content-Type $application/x-font-ttf 190 | FilterProvider COMPRESS DEFLATE resp=Content-Type $font/opentype 191 | FilterChain COMPRESS 192 | FilterProtocol COMPRESS DEFLATE change=yes;byteranges=no 193 | 194 | 195 | 196 | # Legacy versions of Apache 197 | AddOutputFilterByType DEFLATE text/html text/plain text/css application/json 198 | AddOutputFilterByType DEFLATE application/javascript 199 | AddOutputFilterByType DEFLATE text/xml application/xml text/x-component 200 | AddOutputFilterByType DEFLATE application/xhtml+xml application/rss+xml application/atom+xml 201 | AddOutputFilterByType DEFLATE image/x-icon image/svg+xml application/vnd.ms-fontobject application/x-font-ttf font/opentype 202 | 203 | 204 | 205 | 206 | 207 | # ---------------------------------------------------------------------- 208 | # Expires headers (for better cache control) 209 | # ---------------------------------------------------------------------- 210 | 211 | # These are pretty far-future expires headers. 212 | # They assume you control versioning with cachebusting query params like 213 | #