-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit f783759
Showing
116 changed files
with
103,976 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Do not remove this line or mod_rewrite rules and search engine friendly URLs will stop working | ||
RewriteBase / | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2016 Natasha Murashkina | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# [AceCard.pl] | ||
|
||
Once, I have been in a new biology class and the teacher said that it would have been great if everyone had had a place card with their name on their desks. The next class day I brought printouts with names of my classmates which could be folded into prisms and used as place cards. I made the cards manually, but with all my love to optimization, I decided to make it into a mock project to implement which I had to get acquired with web development. | ||
|
||
This service allows a user to enter their name and receive a PDF with their name correctly position on a page. The PDF should be printed and folded according to the instruction on the main page of the website (the main page is shown below). The service also allows to create multiple place cards in one click. | ||
|
||
 | ||
|
||
## License | ||
See the [LICENSE](LICENSE.md) file for license rights and limitations (MIT). | ||
|
||
## Attribution | ||
Some things such that the tcpdf library, fonts, and [Uspensky's rhymes](uspenskiy.txt) in this repo belong to their owners and I do not claim any ownership of any of these. | ||
|
||
[AceCard.pl]: <http://acecard.pl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
!function($){"use strict";var Carousel=function(element,options){this.$element=$(element) | ||
this.options=options | ||
this.options.slide&&this.slide(this.options.slide) | ||
this.options.pause=='hover'&&this.$element.on('mouseenter',$.proxy(this.pause,this)).on('mouseleave',$.proxy(this.cycle,this))} | ||
Carousel.prototype={cycle:function(e){if(!e)this.paused=false | ||
this.options.interval&&!this.paused&&(this.interval=setInterval($.proxy(this.next,this),this.options.interval)) | ||
return this},to:function(pos){var $active=this.$element.find('.active'),children=$active.parent().children(),activePos=children.index($active),that=this | ||
if(pos>(children.length- 1)||pos<0)return | ||
if(this.sliding){return this.$element.one('slid',function(){that.to(pos)})} | ||
if(activePos==pos){return this.pause().cycle()} | ||
return this.slide(pos>activePos?'next':'prev',$(children[pos]))},pause:function(e){if(!e)this.paused=true | ||
clearInterval(this.interval) | ||
this.interval=null | ||
return this},next:function(){if(this.sliding)return | ||
return this.slide('next')},prev:function(){if(this.sliding)return | ||
return this.slide('prev')},slide:function(type,next){var $active=this.$element.find('.active'),$next=next||$active[type](),isCycling=this.interval,direction=type=='next'?'left':'right',fallback=type=='next'?'first':'last',that=this,e=$.Event('slide') | ||
this.sliding=true | ||
isCycling&&this.pause() | ||
$next=$next.length?$next:this.$element.find('.item')[fallback]() | ||
if($next.hasClass('active'))return | ||
if($.support.transition&&this.$element.hasClass('slide')){this.$element.trigger(e) | ||
if(e.isDefaultPrevented())return | ||
$next.addClass(type) | ||
$next[0].offsetWidth | ||
$active.addClass(direction) | ||
$next.addClass(direction) | ||
this.$element.one($.support.transition.end,function(){$next.removeClass([type,direction].join(' ')).addClass('active') | ||
$active.removeClass(['active',direction].join(' ')) | ||
that.sliding=false | ||
setTimeout(function(){that.$element.trigger('slid')},0)})}else{this.$element.trigger(e) | ||
if(e.isDefaultPrevented())return | ||
$active.removeClass('active') | ||
$next.addClass('active') | ||
this.sliding=false | ||
this.$element.trigger('slid')} | ||
isCycling&&this.cycle() | ||
return this}} | ||
$.fn.carousel=function(option){return this.each(function(){var $this=$(this),data=$this.data('carousel'),options=$.extend({},$.fn.carousel.defaults,typeof option=='object'&&option) | ||
if(!data)$this.data('carousel',(data=new Carousel(this,options))) | ||
if(typeof option=='number')data.to(option) | ||
else if(typeof option=='string'||(option=options.slide))data[option]() | ||
else if(options.interval)data.cycle()})} | ||
$.fn.carousel.defaults={interval:false,pause:'hover'} | ||
$.fn.carousel.Constructor=Carousel | ||
$(function(){$('body').on('click.carousel.data-api','[data-slide]',function(e){var $this=$(this),href,$target=$($this.attr('data-target')||(href=$this.attr('href'))&&href.replace(/.*(?=#[^\s]+$)/,'')),options=!$target.data('modal')&&$.extend({},$target.data(),$this.data()) | ||
$target.carousel(options) | ||
e.preventDefault()})})}(window.jQuery); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,161 @@ | ||
.carousel { | ||
position: relative; | ||
} | ||
.carousel-inner { | ||
position: relative; | ||
overflow: hidden; | ||
width: 100%; | ||
} | ||
.carousel-inner > .item { | ||
display: none; | ||
position: relative; | ||
-webkit-transition: 0.6s ease-in-out left; | ||
transition: 0.6s ease-in-out left; | ||
} | ||
.carousel-inner > .item > img, | ||
.carousel-inner > .item > a > img { | ||
display: block; | ||
max-width: 100%; | ||
height: auto; | ||
line-height: 1; | ||
} | ||
.carousel-inner > .active, | ||
.carousel-inner > .next, | ||
.carousel-inner > .prev { | ||
display: block; | ||
} | ||
.carousel-inner > .active { | ||
left: 0; | ||
} | ||
.carousel-inner > .next, | ||
.carousel-inner > .prev { | ||
position: absolute; | ||
top: 0; | ||
width: 100%; | ||
} | ||
.carousel-inner > .next { | ||
left: 100%; | ||
} | ||
.carousel-inner > .prev { | ||
left: -100%; | ||
} | ||
.carousel-inner > .next.left, | ||
.carousel-inner > .prev.right { | ||
left: 0; | ||
} | ||
.carousel-inner > .active.left { | ||
left: -100%; | ||
} | ||
.carousel-inner > .active.right { | ||
left: 100%; | ||
} | ||
.carousel-control { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
bottom: 0; | ||
width: 15%; | ||
opacity: 0.5; | ||
filter: alpha(opacity=50); | ||
font-size: 20px; | ||
color: #ffffff; | ||
text-align: center; | ||
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); | ||
} | ||
.carousel-control.left { | ||
background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0%), color-stop(rgba(0, 0, 0, 0.0001) 100%)); | ||
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); | ||
background-repeat: repeat-x; | ||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); | ||
} | ||
.carousel-control.right { | ||
left: auto; | ||
right: 0; | ||
background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0%), color-stop(rgba(0, 0, 0, 0.5) 100%)); | ||
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); | ||
background-repeat: repeat-x; | ||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); | ||
} | ||
.carousel-control:hover, | ||
.carousel-control:focus { | ||
outline: none; | ||
color: #ffffff; | ||
text-decoration: none; | ||
opacity: 0.9; | ||
filter: alpha(opacity=90); | ||
} | ||
.carousel-control .icon-prev, | ||
.carousel-control .icon-next, | ||
.carousel-control .glyphicon-chevron-left, | ||
.carousel-control .glyphicon-chevron-right { | ||
position: absolute; | ||
top: 50%; | ||
z-index: 5; | ||
display: inline-block; | ||
} | ||
.carousel-control .icon-prev, | ||
.carousel-control .glyphicon-chevron-left { | ||
left: 50%; | ||
} | ||
.carousel-control .icon-next, | ||
.carousel-control .glyphicon-chevron-right { | ||
right: 50%; | ||
} | ||
.carousel-control .icon-prev, | ||
.carousel-control .icon-next { | ||
width: 20px; | ||
height: 20px; | ||
margin-top: -10px; | ||
margin-left: -10px; | ||
font-family: serif; | ||
} | ||
.carousel-control .icon-prev:before { | ||
content: '\2039'; | ||
} | ||
.carousel-control .icon-next:before { | ||
content: '\203a'; | ||
} | ||
.carousel-indicators { | ||
position: absolute; | ||
bottom: 10px; | ||
left: 50%; | ||
z-index: 15; | ||
width: 60%; | ||
margin-left: -30%; | ||
padding-left: 0; | ||
list-style: none; | ||
text-align: center; | ||
} | ||
.carousel-indicators li { | ||
display: inline-block; | ||
width: 10px; | ||
height: 10px; | ||
margin: 1px; | ||
text-indent: -999px; | ||
border: 1px solid #ffffff; | ||
border-radius: 10px; | ||
cursor: pointer; | ||
background-color: #000 \9; | ||
background-color: rgba(0, 0, 0, 0); | ||
} | ||
.carousel-indicators .active { | ||
margin: 0; | ||
width: 12px; | ||
height: 12px; | ||
background-color: #ffffff; | ||
} | ||
.carousel-caption { | ||
position: absolute; | ||
left: 15%; | ||
right: 15%; | ||
bottom: 20px; | ||
z-index: 10; | ||
padding-top: 20px; | ||
padding-bottom: 20px; | ||
color: #ffffff; | ||
text-align: center; | ||
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); | ||
} | ||
.carousel-caption .btn { | ||
text-shadow: none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,147 @@ | ||
/* html5doctor.com/html-5-reset-stylesheet/ */ | ||
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,time,mark,audio,video | ||
{ margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent; } | ||
body { line-height:1; } | ||
|
||
body { | ||
background-color: #f7f7f7; | ||
} | ||
|
||
.navbar-out { | ||
background: #191919 url(../navbar.jpg) no-repeat center; | ||
height: 52px; | ||
min-width: 875px; | ||
} | ||
|
||
.navbar { | ||
margin-top: -52px; | ||
margin-left: -28px; | ||
margin-right: -28px; | ||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | ||
font-size: 14px; | ||
} | ||
|
||
|
||
#nav-main { | ||
margin-top: 17px; | ||
font-size: 18px; | ||
color: #cccccc; | ||
text-decoration: none; | ||
} | ||
|
||
#nav-set { | ||
margin-top: -24px; | ||
margin-left: 315px; | ||
width: 200px; | ||
} | ||
#setlink { | ||
color: #cccccc; | ||
text-decoration: none; | ||
} | ||
|
||
#nav-about { | ||
margin-top: 4px; | ||
margin-left: 345px; | ||
color: #ffffff; | ||
cursor: default; | ||
} | ||
|
||
#nav-main:hover, | ||
#nav-main:focus, | ||
#setlink:hover, | ||
#setlink:focus { | ||
color: #ffffff; | ||
} | ||
|
||
|
||
/*--------------------------------------*/ | ||
|
||
.pg-wrap { | ||
margin: 0 auto; | ||
width: 875px; | ||
} | ||
|
||
.pg-content { | ||
margin: 0 70px; | ||
width: 735px; | ||
} | ||
|
||
.cont { | ||
padding-top: 50px; | ||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | ||
font-size: 14px; | ||
line-height: 20px; | ||
color: #333333; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
} | ||
|
||
.l:link { | ||
color: blue; | ||
} | ||
|
||
.l:visited { | ||
color: blue; | ||
} | ||
|
||
.l:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
|
||
/*--------ะคัััััััััััััััััััััััััััะตั------------------------------*/ | ||
|
||
|
||
html, body { | ||
height: 100%; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
.page-wrapper { | ||
min-height: 100%; | ||
margin-bottom: -50px; | ||
} | ||
* html .page-wrapper { | ||
height: 100%; | ||
} | ||
.page-buffer { | ||
height: 50px; | ||
} | ||
|
||
|
||
.footer-out { | ||
background-color: #191919; | ||
margin-top: -60px; | ||
height: 60px; | ||
} | ||
|
||
.footer { | ||
height: 14px; | ||
width: 735px; | ||
background-color: #191919; | ||
font-size: 14px; | ||
color: white; | ||
margin-top: 70px; | ||
padding: 23px 70px; | ||
} | ||
|
||
#left { | ||
float: left; | ||
} | ||
#right { | ||
float: right; | ||
} | ||
|
||
#right-not-float { | ||
margin-left: 500px; | ||
} | ||
|
||
.nl { | ||
text-decoration: none; | ||
} | ||
.nl:link, | ||
.nl:visited { | ||
color: white; | ||
} |
Oops, something went wrong.