| @ -0,0 +1,8 @@ | |||
| all: compile | |||
| compile: | |||
| jade index.jade | |||
| cleancss styles/main.css -o styles/main.min.css | |||
| cleancss styles/general_foundicons.css -o styles/general_foundicons.min.css | |||
| cleancss styles/general_foundicons_ie7.css -o styles/general_foundicons_ie7.min.css | |||
| uglifyjs scripts/main.js -o scripts/main.min.js | |||
| @ -0,0 +1,15 @@ | |||
| <?xml version="1.0" standalone="no"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd" > <svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"> | |||
| <defs > | |||
| <font id="generalfoundicons" horiz-adv-x="955" ><font-face | |||
| font-family="General Foundicons" | |||
| units-per-em="1000" | |||
| panose-1="0 0 0 0 0 0 0 0 0 0" | |||
| ascent="1000" | |||
| descent="0" | |||
| alphabetic="0" /> | |||
| <missing-glyph horiz-adv-x="250" /> | |||
| <glyph unicode=" " glyph-name="space" horiz-adv-x="250" /> | |||
| <glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="1000" /> | |||
| </font> | |||
| </defs> | |||
| </svg> | |||
| @ -1 +1 @@ | |||
| var warning_time=60;var started=false;var update_timeout=null;var start_time=null;var stop_time=null;var remaining_time=null;var elapsed_time=null;var steps=[];$(document).ready(function(){$("#set").click(start_timer);$("#stop").click(stop_timer);$("#add").click(add_step);$("#set-warning").click(set_warning);$("#warning-time").val(round(warning_time/60,2))});var start_timer=function(){remaining_time=parseFloat($("#total").val());elapsed_time=0;if(!remaining_time){alert("invalid number: "+$("#total").val());return false}remaining_time*=60;start_time=(new Date).getTime();stop_time=start_time+remaining_time*1e3;update_timers();$("#set-timer").hide();$("#stop-timer").show()};var stop_timer=function(){$("#total").val(round(remaining_time/60,2));if(update_timeout){clearTimeout(update_timeout)}$("#set-timer").show();$("#stop-timer").hide()};var update_timers=function(){remaining_time-=1;elapsed_time-=1;if(remaining_time>0){update_timeout=setTimeout(update_timers,1e3)}else{$("#finished").trigger("play");$("#set-timer").show();$("#stop-timer").hide()}$("#remaining h3").html(format_time(remaining_time));$("#elapsed h3").html("-"+format_time(elapsed_time));var now=(new Date).getTime();var true_total=Math.floor((stop_time-start_time)/1e3);var true_elapsed=Math.floor((start_time-now)/1e3);var true_remaining=Math.floor((stop_time-now)/1e3);if(true_elapsed!=elapsed_time||true_remaining!=remaining_time||elapsed_time+remaining_time!=true_total){remaining_time=Math.floor((stop_time-now)/1e3);elapsed_time=true_elapsed}check_steps(true_remaining)};var format_time=function(time){time=Math.abs(time);var hours=Math.floor(time/3600);time-=hours*3600;var minutes=Math.floor(time/60);time-=minutes*60;var seconds=round(time,0);return less_than_ten(hours)+":"+less_than_ten(minutes)+":"+less_than_ten(seconds)};var less_than_ten=function(time){return time<10?"0"+time:time};var add_step=function(){var step={at:round(parseFloat($("#add-step #time").val()),2),name:$("#add-step #name").val()};if(!step.at){alert("invalid number: "+$("#add-step #time").val());return false}if(!step.name||step.name==""){alert("invalid name: "+step.name);return false}step.at*=60;steps.push(step);write_steps();$("#add-step #time").val("");$("#add-step #name").val("")};var write_steps=function(){steps.sort(function(a,b){return a.at<b.at});$("#steps .step").remove();for(var i in steps){var step=steps[i];var html=$('<div class="step row"/>');html.append('<div class="six columns"><h5 class="name">'+step.name+"</h5></div>");html.append('<div class="two columns"><h5 class="at">'+format_time(step.at)+"</h5></div>");html.append('<div class="two columns end"><button class="remove button">Remove Step</button></div>');$("#steps #list").append(html)}$("#steps #list .remove").click(remove_step)};var remove_step=function(){var step=$(this).parent().parent();var columns=step.children(".columns");var name=columns.children(".name").html();var at=parseFloat(columns.children(".at").html())*60;var remove=null;for(var i in steps){var step=steps[i];if(step.at==at&&step.name==name){remove=i;break}}if(remove>=0){steps.splice(i,1)}write_steps()};var check_steps=function(time){$("#steps #list .step").each(function(){var columns=$(this).children(".columns");var at=columns.children(".at").html();var matches=at.match("([0-9]+):([0-9]+):([0-9]+)");at=parseInt(matches[1])*3600;at+=parseInt(matches[2]*60);at+=parseInt(matches[3]);if(at>time){$(this).addClass("completed");$(this).removeClass("current")}else if(at==time){$(this).removeClass("warning");$(this).addClass("current");$("#completed").trigger("play")}else if(warning_time&&at+warning_time==time){$(this).addClass("warning");$("#warning").trigger("play")}else{$(this).removeClass("current");$(this).removeClass("completed")}})};var round=function(num,num_places){num_places=Math.pow(10,num_places);return Math.round(num*num_places)/num_places};var set_warning=function(){warning_time=parseFloat($("#warning-time").val())*60}; | |||
| var warning_time=60;var finished_audio="#answering-machine";var warning_audio="#beep";var completed_audio="#clinking";var started=false;var update_timeout=null;var start_time=null;var stop_time=null;var remaining_time=null;var elapsed_time=null;var steps=[];$(document).ready(function(){$("#set").click(start_timer);$("#stop").click(stop_timer);$("#add").click(add_step);$("#open-settings").click(open_settings);$("#settings #save").click(save_settings)});var start_timer=function(){remaining_time=parseFloat($("#total").val());elapsed_time=0;if(!remaining_time){alert("invalid number: "+$("#total").val());return false}remaining_time*=60;start_time=(new Date).getTime();stop_time=start_time+remaining_time*1e3;update_timers();$("#set-timer").hide();$("#stop-timer").show()};var stop_timer=function(){$("#total").val(round(remaining_time/60,2));if(update_timeout){clearTimeout(update_timeout)}$("#set-timer").show();$("#stop-timer").hide()};var update_timers=function(){remaining_time-=1;elapsed_time-=1;if(remaining_time>0){update_timeout=setTimeout(update_timers,1e3)}else{$(finished_audio).trigger("play");$("#set-timer").show();$("#stop-timer").hide()}$("#remaining h3").html(format_time(remaining_time));$("#elapsed h3").html("-"+format_time(elapsed_time));var now=(new Date).getTime();var true_total=Math.floor((stop_time-start_time)/1e3);var true_elapsed=Math.floor((start_time-now)/1e3);var true_remaining=Math.floor((stop_time-now)/1e3);if(true_elapsed!=elapsed_time||true_remaining!=remaining_time||elapsed_time+remaining_time!=true_total){remaining_time=Math.floor((stop_time-now)/1e3);elapsed_time=true_elapsed}check_steps(true_remaining)};var format_time=function(time){time=Math.abs(time);var hours=Math.floor(time/3600);time-=hours*3600;var minutes=Math.floor(time/60);time-=minutes*60;var seconds=round(time,0);return less_than_ten(hours)+":"+less_than_ten(minutes)+":"+less_than_ten(seconds)};var less_than_ten=function(time){return time<10?"0"+time:time};var add_step=function(){var step={at:round(parseFloat($("#add-step #time").val()),2),name:$("#add-step #name").val()};if(!step.at){alert("invalid number: "+$("#add-step #time").val());return false}if(!step.name||step.name==""){alert("invalid name: "+step.name);return false}step.at*=60;steps.push(step);write_steps();$("#add-step #time").val("");$("#add-step #name").val("")};var write_steps=function(){steps.sort(function(a,b){return a.at<b.at});$("#steps .step").remove();for(var i in steps){var step=steps[i];var html=$('<div class="step row"/>');html.append('<div class="six columns"><h5 class="name">'+step.name+"</h5></div>");html.append('<div class="two columns"><h5 class="at">'+format_time(step.at)+"</h5></div>");html.append('<div class="two columns end"><button class="remove button">Remove Step</button></div>');$("#steps #list").append(html)}$("#steps #list .remove").click(remove_step)};var remove_step=function(){var step=$(this).parent().parent();var columns=step.children(".columns");var name=columns.children(".name").html();var at=parseFloat(columns.children(".at").html())*60;var remove=null;for(var i in steps){var step=steps[i];if(step.at==at&&step.name==name){remove=i;break}}if(remove>=0){steps.splice(i,1)}write_steps()};var check_steps=function(time){$("#steps #list .step").each(function(){var columns=$(this).children(".columns");var at=columns.children(".at").html();var matches=at.match("([0-9]+):([0-9]+):([0-9]+)");at=parseInt(matches[1])*3600;at+=parseInt(matches[2]*60);at+=parseInt(matches[3]);if(at>time){$(this).addClass("completed");$(this).removeClass("current")}else if(at==time){$(this).removeClass("warning");$(this).addClass("current");$(completed_audio).trigger("play")}else if(warning_time&&at+warning_time==time){$(this).addClass("warning");$(warning_audio).trigger("play")}else{$(this).removeClass("current");$(this).removeClass("completed")}})};var round=function(num,num_places){num_places=Math.pow(10,num_places);return Math.round(num*num_places)/num_places};var save_settings=function(){warning_time=parseFloat($("#warning-time").val())*60;finished_audio=$("#finished-audio").val();completed_audio=$("#step-audio").val();warning_audio=$("#warning-audio").val();$("#settings a.close-reveal-modal").click()};var open_settings=function(){$("#warning-time").val(round(warning_time/60,2));$("#settings #finished-audio").children("option").each(function(){if($(this).val()==finished_audio){$(this).prop("selected",true)}else{$(this).removeAttr("selected")}});$("#settings #warning-audio").children("option").each(function(){if($(this).val()==warning_audio){$(this).prop("selected",true)}else{$(this).removeAttr("selected")}});$("#settings #step-audio").children("option").each(function(){if($(this).val()==completed_audio){$(this).prop("selected",true)}else{$(this).removeAttr("selected")}})}; | |||
| @ -0,0 +1,216 @@ | |||
| /* font-face */ | |||
| @font-face { | |||
| font-family: "GeneralFoundicons"; | |||
| src: url("/fonts/general_foundicons.eot"); | |||
| src: url("/fonts/general_foundicons.eot?#iefix") format("embedded-opentype"), url("/fonts/general_foundicons.woff") format("woff"), url("/fonts/general_foundicons.ttf") format("truetype"), url("/fonts/general_foundicons.svg#GeneralFoundicons") format("svg"); | |||
| font-weight: normal; | |||
| font-style: normal; | |||
| } | |||
| /* global foundicon styles */ | |||
| [class*="foundicon-"] { | |||
| display: inline; | |||
| width: auto; | |||
| height: auto; | |||
| line-height: inherit; | |||
| vertical-align: baseline; | |||
| background-image: none; | |||
| background-position: 0 0; | |||
| background-repeat: repeat; | |||
| } | |||
| [class*="foundicon-"]:before { | |||
| font-family: "GeneralFoundicons"; | |||
| font-weight: normal; | |||
| font-style: normal; | |||
| text-decoration: inherit; | |||
| } | |||
| /* icons */ | |||
| .foundicon-settings:before { | |||
| content: "\f000"; | |||
| } | |||
| .foundicon-heart:before { | |||
| content: "\f001"; | |||
| } | |||
| .foundicon-star:before { | |||
| content: "\f002"; | |||
| } | |||
| .foundicon-plus:before { | |||
| content: "\f003"; | |||
| } | |||
| .foundicon-minus:before { | |||
| content: "\f004"; | |||
| } | |||
| .foundicon-checkmark:before { | |||
| content: "\f005"; | |||
| } | |||
| .foundicon-remove:before { | |||
| content: "\f006"; | |||
| } | |||
| .foundicon-mail:before { | |||
| content: "\f007"; | |||
| } | |||
| .foundicon-calendar:before { | |||
| content: "\f008"; | |||
| } | |||
| .foundicon-page:before { | |||
| content: "\f009"; | |||
| } | |||
| .foundicon-tools:before { | |||
| content: "\f00a"; | |||
| } | |||
| .foundicon-globe:before { | |||
| content: "\f00b"; | |||
| } | |||
| .foundicon-home:before { | |||
| content: "\f00c"; | |||
| } | |||
| .foundicon-quote:before { | |||
| content: "\f00d"; | |||
| } | |||
| .foundicon-people:before { | |||
| content: "\f00e"; | |||
| } | |||
| .foundicon-monitor:before { | |||
| content: "\f00f"; | |||
| } | |||
| .foundicon-laptop:before { | |||
| content: "\f010"; | |||
| } | |||
| .foundicon-phone:before { | |||
| content: "\f011"; | |||
| } | |||
| .foundicon-cloud:before { | |||
| content: "\f012"; | |||
| } | |||
| .foundicon-error:before { | |||
| content: "\f013"; | |||
| } | |||
| .foundicon-right-arrow:before { | |||
| content: "\f014"; | |||
| } | |||
| .foundicon-left-arrow:before { | |||
| content: "\f015"; | |||
| } | |||
| .foundicon-up-arrow:before { | |||
| content: "\f016"; | |||
| } | |||
| .foundicon-down-arrow:before { | |||
| content: "\f017"; | |||
| } | |||
| .foundicon-trash:before { | |||
| content: "\f018"; | |||
| } | |||
| .foundicon-add-doc:before { | |||
| content: "\f019"; | |||
| } | |||
| .foundicon-edit:before { | |||
| content: "\f01a"; | |||
| } | |||
| .foundicon-lock:before { | |||
| content: "\f01b"; | |||
| } | |||
| .foundicon-unlock:before { | |||
| content: "\f01c"; | |||
| } | |||
| .foundicon-refresh:before { | |||
| content: "\f01d"; | |||
| } | |||
| .foundicon-paper-clip:before { | |||
| content: "\f01e"; | |||
| } | |||
| .foundicon-video:before { | |||
| content: "\f01f"; | |||
| } | |||
| .foundicon-photo:before { | |||
| content: "\f020"; | |||
| } | |||
| .foundicon-graph:before { | |||
| content: "\f021"; | |||
| } | |||
| .foundicon-idea:before { | |||
| content: "\f022"; | |||
| } | |||
| .foundicon-mic:before { | |||
| content: "\f023"; | |||
| } | |||
| .foundicon-cart:before { | |||
| content: "\f024"; | |||
| } | |||
| .foundicon-address-book:before { | |||
| content: "\f025"; | |||
| } | |||
| .foundicon-compass:before { | |||
| content: "\f026"; | |||
| } | |||
| .foundicon-flag:before { | |||
| content: "\f027"; | |||
| } | |||
| .foundicon-location:before { | |||
| content: "\f028"; | |||
| } | |||
| .foundicon-clock:before { | |||
| content: "\f029"; | |||
| } | |||
| .foundicon-folder:before { | |||
| content: "\f02a"; | |||
| } | |||
| .foundicon-inbox:before { | |||
| content: "\f02b"; | |||
| } | |||
| .foundicon-website:before { | |||
| content: "\f02c"; | |||
| } | |||
| .foundicon-smiley:before { | |||
| content: "\f02d"; | |||
| } | |||
| .foundicon-search:before { | |||
| content: "\f02e"; | |||
| } | |||
| @ -0,0 +1 @@ | |||
| @font-face{font-family:GeneralFoundicons;src:url(/fonts/general_foundicons.eot);src:url(/fonts/general_foundicons.eot?#iefix) format("embedded-opentype"),url(/fonts/general_foundicons.woff) format("woff"),url(/fonts/general_foundicons.ttf) format("truetype"),url(/fonts/general_foundicons.svg#GeneralFoundicons) format("svg");font-weight:400;font-style:normal}[class*=foundicon-]{display:inline;width:auto;height:auto;line-height:inherit;vertical-align:baseline;background-image:none;background-position:0 0;background-repeat:repeat}[class*=foundicon-]:before{font-family:GeneralFoundicons;font-weight:400;font-style:normal;text-decoration:inherit}.foundicon-settings:before{content:"\f000"}.foundicon-heart:before{content:"\f001"}.foundicon-star:before{content:"\f002"}.foundicon-plus:before{content:"\f003"}.foundicon-minus:before{content:"\f004"}.foundicon-checkmark:before{content:"\f005"}.foundicon-remove:before{content:"\f006"}.foundicon-mail:before{content:"\f007"}.foundicon-calendar:before{content:"\f008"}.foundicon-page:before{content:"\f009"}.foundicon-tools:before{content:"\f00a"}.foundicon-globe:before{content:"\f00b"}.foundicon-home:before{content:"\f00c"}.foundicon-quote:before{content:"\f00d"}.foundicon-people:before{content:"\f00e"}.foundicon-monitor:before{content:"\f00f"}.foundicon-laptop:before{content:"\f010"}.foundicon-phone:before{content:"\f011"}.foundicon-cloud:before{content:"\f012"}.foundicon-error:before{content:"\f013"}.foundicon-right-arrow:before{content:"\f014"}.foundicon-left-arrow:before{content:"\f015"}.foundicon-up-arrow:before{content:"\f016"}.foundicon-down-arrow:before{content:"\f017"}.foundicon-trash:before{content:"\f018"}.foundicon-add-doc:before{content:"\f019"}.foundicon-edit:before{content:"\f01a"}.foundicon-lock:before{content:"\f01b"}.foundicon-unlock:before{content:"\f01c"}.foundicon-refresh:before{content:"\f01d"}.foundicon-paper-clip:before{content:"\f01e"}.foundicon-video:before{content:"\f01f"}.foundicon-photo:before{content:"\f020"}.foundicon-graph:before{content:"\f021"}.foundicon-idea:before{content:"\f022"}.foundicon-mic:before{content:"\f023"}.foundicon-cart:before{content:"\f024"}.foundicon-address-book:before{content:"\f025"}.foundicon-compass:before{content:"\f026"}.foundicon-flag:before{content:"\f027"}.foundicon-location:before{content:"\f028"}.foundicon-clock:before{content:"\f029"}.foundicon-folder:before{content:"\f02a"}.foundicon-inbox:before{content:"\f02b"}.foundicon-website:before{content:"\f02c"}.foundicon-smiley:before{content:"\f02d"}.foundicon-search:before{content:"\f02e"} | |||
| @ -0,0 +1,194 @@ | |||
| /* general icons for IE7 */ | |||
| [class*="foundicon-"] { | |||
| font-family: "GeneralFoundicons"; | |||
| font-weight: normal; | |||
| font-style: normal; | |||
| } | |||
| .foundicon-settings { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-heart { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-star { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-plus { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-minus { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-checkmark { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-remove { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-mail { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-calendar { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-page { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-tools { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-globe { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-home { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-quote { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-people { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-monitor { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-laptop { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-phone { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-cloud { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-error { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-right-arrow { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-left-arrow { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-up-arrow { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-down-arrow { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-trash { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-add-doc { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-edit { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-lock { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-unlock { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-refresh { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-paper-clip { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-video { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-photo { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-graph { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-idea { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-mic { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-cart { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-address-book { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-compass { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-flag { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-location { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-clock { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-folder { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-inbox { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-website { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-smiley { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| .foundicon-search { | |||
| *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); | |||
| } | |||
| @ -0,0 +1 @@ | |||
| [class*=foundicon-]{font-family:GeneralFoundicons;font-weight:400;font-style:normal}.foundicon-settings{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-heart{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-star{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-plus{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-minus{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-checkmark{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-remove{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-mail{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-calendar{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-page{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-tools{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-globe{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-home{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-quote{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-people{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-monitor{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-laptop{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-phone{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-cloud{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-error{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-right-arrow{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-left-arrow{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-up-arrow{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-down-arrow{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-trash{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-add-doc{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-edit{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-lock{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-unlock{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-refresh{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-paper-clip{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-video{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-photo{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-graph{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-idea{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-mic{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-cart{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-address-book{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-compass{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-flag{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-location{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-clock{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-folder{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-inbox{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-website{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-smiley{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")}.foundicon-search{*zoom:expression(this.runtimeStyle[=zoom]="1",this.innerHTML="")} | |||
| @ -1 +1 @@ | |||
| #timers h3{font-family:Offside,cursive;font-weight:100}#add-step input,#add-step button,#set-timer input,#set-timer button,#stop-timer button{margin-top:6px;height:35px;width:100%}#stop-timer button{margin-bottom:12px}#stop-timer{display:none}.remove{font-size:12px}#list{min-height:200px}#list .header h5{text-decoration:underline}#list h5{margin:0;padding:0;line-height:35px;text-align:center}.completed{background-color:rgba(200,150,150,.8)}.current{background-color:rgba(150,200,150,.8)}.warning{background-color:rgba(255,255,150,.8)}#footer .columns{padding-top:2px;padding-bottom:2px;text-align:center} | |||
| #timers h3{font-family:Offside,cursive;font-weight:100}#add-step input,#add-step button,#set-timer input,#set-timer button,#stop-timer button{margin-top:6px;height:35px;width:100%}#stop-timer button{margin-bottom:12px}#stop-timer{display:none}.remove{font-size:12px}#list{min-height:200px}#list .header h5{text-decoration:underline}#list h5{margin:0;padding:0;line-height:35px;text-align:center}.completed{background-color:rgba(200,150,150,.8)}.current{background-color:rgba(150,200,150,.8)}.warning{background-color:rgba(255,255,150,.8)}#footer .columns{padding-top:2px;padding-bottom:2px;text-align:center}#settings label{line-height:32px} | |||