Initial commit
This commit is contained in:
Vendored
+2809
File diff suppressed because it is too large
Load Diff
Vendored
+5027
File diff suppressed because it is too large
Load Diff
Vendored
+183
File diff suppressed because one or more lines are too long
Vendored
+1
@@ -0,0 +1 @@
|
||||
/*! normalize.css v1.1.2 | MIT License | git.io/normalize */article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-size:100%;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}html,button,input,select,textarea{font-family:sans-serif}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}h2{font-size:1.5em;margin:.83em 0}h3{font-size:1.17em;margin:1em 0}h4{font-size:1em;margin:1.33em 0}h5{font-size:.83em;margin:1.67em 0}h6{font-size:.67em;margin:2.33em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}blockquote{margin:1em 40px}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}p,pre{margin:1em 0}code,kbd,pre,samp{font-family:monospace,serif;_font-family:'courier new',monospace;font-size:1em}pre{white-space:pre;white-space:pre-wrap;word-wrap:break-word}q{quotes:none}q:before,q:after{content:'';content:none}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}dl,menu,ol,ul{margin:0 0 0.5em 0}dd{margin:0 0 0 40px}menu,ol,ul{padding:0}nav ul,nav ol{list-style:none;list-style-image:none}img{border:0;-ms-interpolation-mode:bicubic}svg:not(:root){overflow:hidden}figure{margin:0}form{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0;white-space:normal;*margin-left:-7px}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;*overflow:visible}button[disabled],html input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;*height:13px;*width:13px}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}
|
||||
+213
@@ -0,0 +1,213 @@
|
||||
*{
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
body{
|
||||
font-family:Arial, sans-serif;
|
||||
font-size:14px;
|
||||
background:#f4f4f4 url(../images/bg.gif) repeat top left;
|
||||
color:#333;
|
||||
text-shadow:1px 1px 1px #fff;
|
||||
overflow-y:scroll;
|
||||
}
|
||||
h1{
|
||||
font-size:56px;
|
||||
}
|
||||
h2{
|
||||
font-size:24px;
|
||||
padding:0px 0px 40px 0px;
|
||||
color:#333;
|
||||
text-align:center;
|
||||
}
|
||||
h2 span{
|
||||
color:#ffa800;
|
||||
}
|
||||
a{
|
||||
color:#777;
|
||||
}
|
||||
a:hover{
|
||||
color:#222;
|
||||
}
|
||||
p{
|
||||
padding:5px 0px;
|
||||
}
|
||||
.wrapper{
|
||||
width:960px;
|
||||
margin:20px auto;
|
||||
min-height:550px;
|
||||
}
|
||||
.box{
|
||||
width:49%;
|
||||
}
|
||||
.left{
|
||||
float:left;
|
||||
}
|
||||
.right{
|
||||
float:right;
|
||||
}
|
||||
.clear{
|
||||
clear:both;
|
||||
}
|
||||
a.back{
|
||||
color:#777;
|
||||
position:fixed;
|
||||
top:5px;
|
||||
right:10px;
|
||||
text-decoration:none;
|
||||
}
|
||||
/* Form Style */
|
||||
.form_wrapper{
|
||||
background:#fff;
|
||||
border:1px solid #ddd;
|
||||
margin:0 auto;
|
||||
width:350px;
|
||||
font-size:16px;
|
||||
-moz-box-shadow:1px 1px 7px #ccc;
|
||||
-webkit-box-shadow:1px 1px 7px #ccc;
|
||||
box-shadow:1px 1px 7px #ccc;
|
||||
}
|
||||
.form_wrapper h3{
|
||||
padding:20px 30px 20px 30px;
|
||||
background-color:#444;
|
||||
color:#fff;
|
||||
font-size:25px;
|
||||
border-bottom:1px solid #ddd;
|
||||
}
|
||||
.form_wrapper form{
|
||||
display:none;
|
||||
background:#fff;
|
||||
}
|
||||
.form_wrapper .column{
|
||||
width:47%;
|
||||
float:left;
|
||||
}
|
||||
form.active{
|
||||
display:block;
|
||||
}
|
||||
form.login{
|
||||
width:350px;
|
||||
}
|
||||
form.register{
|
||||
width:550px;
|
||||
}
|
||||
form.forgot_password{
|
||||
width:300px;
|
||||
}
|
||||
.form_wrapper a{
|
||||
text-decoration:none;
|
||||
color:#777;
|
||||
font-size:12px;
|
||||
}
|
||||
.form_wrapper a:hover{
|
||||
color:#000;
|
||||
}
|
||||
.form_wrapper label{
|
||||
display:block;
|
||||
padding:10px 30px 0px 30px;
|
||||
margin:10px 0px 0px 0px;
|
||||
}
|
||||
.form_wrapper input[type="text"],
|
||||
.form_wrapper input[type="password"]{
|
||||
border: solid 1px #E5E5E5;
|
||||
background: #FFFFFF;
|
||||
margin: 5px 30px 0px 30px;
|
||||
padding: 9px;
|
||||
display:block;
|
||||
font-size:16px;
|
||||
width:76%;
|
||||
background:
|
||||
-webkit-gradient(
|
||||
linear,
|
||||
left top,
|
||||
left 25,
|
||||
from(#FFFFFF),
|
||||
color-stop(4%, #EEEEEE),
|
||||
to(#FFFFFF)
|
||||
);
|
||||
background:
|
||||
-moz-linear-gradient(
|
||||
top,
|
||||
#FFFFFF,
|
||||
#EEEEEE 1px,
|
||||
#FFFFFF 25px
|
||||
);
|
||||
-moz-box-shadow: 0px 0px 8px #f0f0f0;
|
||||
-webkit-box-shadow: 0px 0px 8px #f0f0f0;
|
||||
box-shadow: 0px 0px 8px #f0f0f0;
|
||||
}
|
||||
.form_wrapper input[type="text"]:focus,
|
||||
.form_wrapper input[type="password"]:focus{
|
||||
background:#feffef;
|
||||
}
|
||||
.form_wrapper .bottom{
|
||||
background-color:#444;
|
||||
border-top:1px solid #ddd;
|
||||
margin-top:20px;
|
||||
clear:both;
|
||||
color:#fff;
|
||||
text-shadow:1px 1px 1px #000;
|
||||
}
|
||||
.form_wrapper .bottom a{
|
||||
display:block;
|
||||
clear:both;
|
||||
padding:10px 30px;
|
||||
text-align:right;
|
||||
color:#ffa800;
|
||||
text-shadow:1px 1px 1px #000;
|
||||
}
|
||||
.form_wrapper a.forgot{
|
||||
float:right;
|
||||
font-style:italic;
|
||||
line-height:24px;
|
||||
color:#ffa800;
|
||||
text-shadow:1px 1px 1px #fff;
|
||||
}
|
||||
.form_wrapper a.forgot:hover{
|
||||
color:#000;
|
||||
}
|
||||
.form_wrapper div.remember{
|
||||
float:left;
|
||||
width:140px;
|
||||
margin:20px 0px 20px 30px;
|
||||
font-size:11px;
|
||||
}
|
||||
.form_wrapper div.remember input{
|
||||
float:left;
|
||||
margin:2px 5px 0px 0px;
|
||||
}
|
||||
.form_wrapper span.error{
|
||||
visibility:hidden;
|
||||
color:red;
|
||||
font-size:11px;
|
||||
font-style:italic;
|
||||
display:block;
|
||||
margin:4px 30px;
|
||||
}
|
||||
.form_wrapper input[type="submit"] {
|
||||
background: #e3e3e3;
|
||||
border: 1px solid #ccc;
|
||||
color: #333;
|
||||
font-family: "Trebuchet MS", "Myriad Pro", sans-serif;
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
padding: 8px 0 9px;
|
||||
text-align: center;
|
||||
width: 150px;
|
||||
cursor:pointer;
|
||||
float:right;
|
||||
margin:15px 20px 10px 10px;
|
||||
text-shadow: 0px 1px 0px #fff;
|
||||
-moz-border-radius: 4px;
|
||||
-webkit-border-radius: 4px;
|
||||
border-radius: 4px;
|
||||
-moz-box-shadow: 0px 0px 2px #fff inset;
|
||||
-webkit-box-shadow: 0px 0px 2px #fff inset;
|
||||
box-shadow: 0px 0px 2px #fff inset;
|
||||
}
|
||||
.form_wrapper input[type="submit"]:hover {
|
||||
background: #d9d9d9;
|
||||
-moz-box-shadow: 0px 0px 2px #eaeaea inset;
|
||||
-webkit-box-shadow: 0px 0px 2px #eaeaea inset;
|
||||
box-shadow: 0px 0px 2px #eaeaea inset;
|
||||
color: #222;
|
||||
}
|
||||
@@ -0,0 +1,214 @@
|
||||
/*
|
||||
|
||||
Supersized - Fullscreen Slideshow jQuery Plugin
|
||||
Version : 3.2.7
|
||||
Site : www.buildinternet.com/project/supersized
|
||||
|
||||
Author : Sam Dunn
|
||||
Company : One Mighty Roar (www.onemightyroar.com)
|
||||
License : MIT License / GPL License
|
||||
|
||||
*/
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
background: #111;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
img {
|
||||
border: none;
|
||||
}
|
||||
|
||||
#supersized-loader {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
z-index: 0;
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
margin: -30px 0 0 -30px;
|
||||
text-indent: -999em;
|
||||
background: url(../images/progress.gif) no-repeat center center;
|
||||
}
|
||||
|
||||
#supersized {
|
||||
display: block;
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
overflow: hidden;
|
||||
z-index: -999;
|
||||
width: 100%;
|
||||
min-height: 100%;
|
||||
padding: 0 !important;
|
||||
margin: 0 !important;
|
||||
}
|
||||
|
||||
#supersized img {
|
||||
width: auto;
|
||||
height: auto;
|
||||
position: relative;
|
||||
display: none;
|
||||
outline: none;
|
||||
border: none;
|
||||
padding: 0 !important;
|
||||
margin: 0 !important;
|
||||
}
|
||||
|
||||
#supersized.speed img {
|
||||
-ms-interpolation-mode: nearest-neighbor;
|
||||
image-rendering: -moz-crisp-edges;
|
||||
}
|
||||
|
||||
/*Speed*/
|
||||
#supersized.quality img {
|
||||
-ms-interpolation-mode: bicubic;
|
||||
image-rendering: optimizeQuality;
|
||||
}
|
||||
|
||||
/*Quality*/
|
||||
#supersized li {
|
||||
display: block;
|
||||
list-style: none;
|
||||
z-index: -30;
|
||||
position: fixed;
|
||||
overflow: hidden;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
#supersized a {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: block;
|
||||
}
|
||||
|
||||
#supersized li.prevslide {
|
||||
z-index: -20;
|
||||
}
|
||||
|
||||
#supersized li.activeslide {
|
||||
z-index: -10;
|
||||
}
|
||||
|
||||
#supersized li.image-loading {
|
||||
background: #111111 url(../images/progress.gif) no-repeat center center;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
#supersized li.image-loading img {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
#supersized li.prevslide img, #supersized li.activeslide img {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
#lightbox {
|
||||
cursor: pointer;
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 9999;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background: black;
|
||||
/* IE Fallback (Solid Colour) */
|
||||
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAIElEQVQ4T2NkYGDYDMRkA8ZRAxhGw4BhNAyA+WAYpAMAIFgLQfO9BoEAAAAASUVORK5CYII=);
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
-webkit-filter: none !important;
|
||||
}
|
||||
|
||||
#lightbox img {
|
||||
display: block;
|
||||
position: absolute;
|
||||
border: 5px solid #fff;
|
||||
box-shadow: 0 0 20px #000;
|
||||
border-radius: 1px;
|
||||
}
|
||||
|
||||
body.blurred > * {
|
||||
-webkit-filter: blur(2px);
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
}
|
||||
|
||||
.lightbox-loading {
|
||||
background: url(../images/progress.gif) center center no-repeat;
|
||||
width: 31px;
|
||||
height: 31px;
|
||||
margin: -16px 0 0 -16px;
|
||||
position: absolute;
|
||||
top: 48%;
|
||||
left: 50%;
|
||||
}
|
||||
|
||||
.lightbox-caption {
|
||||
display: none;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
z-index: 1000;
|
||||
background: #000;
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
|
||||
.lightbox-caption p {
|
||||
margin: 0 auto;
|
||||
max-width: 70%;
|
||||
display: inline-block;
|
||||
*display: inline;
|
||||
*zoom: 1;
|
||||
padding: 10px;
|
||||
color: #fff;
|
||||
font-size: 12px;
|
||||
line-height: 18px;
|
||||
}
|
||||
|
||||
.lightbox-button {
|
||||
position: absolute;
|
||||
z-index: 9999;
|
||||
background: no-repeat center center;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
opacity: 0.4;
|
||||
-webkit-transition: all 0.3s;
|
||||
-moz-transition: all 0.3s;
|
||||
-ms-transition: all 0.3s;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
|
||||
.lightbox-button:hover,
|
||||
.lightbox-button:focus {
|
||||
opacity: 1;
|
||||
-webkit-transform: scale(1.4);
|
||||
-moz-transform: scale(1.4);
|
||||
-ms-transform: scale(1.4);
|
||||
transform: scale(1.4);
|
||||
}
|
||||
|
||||
.lightbox-close {
|
||||
right: 10px;
|
||||
top: 10px;
|
||||
background-image: url("../images/close.png");
|
||||
}
|
||||
|
||||
.lightbox-next {
|
||||
right: 10px;
|
||||
top: 48%;
|
||||
background-image: url("../images/next.png");
|
||||
}
|
||||
|
||||
.lightbox-previous {
|
||||
left: 10px;
|
||||
top: 48%;
|
||||
background-image: url("../images/previous.png");
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,161 @@
|
||||
.tooltip {
|
||||
display: inline;
|
||||
position: relative;
|
||||
z-index: 999;
|
||||
float:right;
|
||||
padding:3px 13px 0 0;
|
||||
}
|
||||
|
||||
/* Trigger text */
|
||||
|
||||
.tooltip-item {
|
||||
font-size:15px;
|
||||
font-style:italic;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
font-weight: 700;
|
||||
padding: 0 0 0 10px;
|
||||
line-height:24px;
|
||||
color:#fff;
|
||||
}
|
||||
|
||||
/* Gap filler */
|
||||
|
||||
.tooltip-item::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 360px;
|
||||
height: 20px;
|
||||
bottom: 100%;
|
||||
left: 50%;
|
||||
pointer-events: none;
|
||||
/*-webkit-transform: translateX(-50%);
|
||||
transform: translateX(-50%);*/
|
||||
}
|
||||
|
||||
.tooltip:hover .tooltip-item::after {
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
/* Tooltip */
|
||||
|
||||
.tooltip-content {
|
||||
background: rgba(0,0,0,0.5) !important;
|
||||
position: absolute;
|
||||
z-index: 9999;
|
||||
width: 230px;
|
||||
left: -167%;
|
||||
margin: 0 0 20px -180px;
|
||||
bottom: -807%;
|
||||
text-align: left;
|
||||
font-size: 0.800em;
|
||||
line-height: 1.4;
|
||||
box-shadow: -5px -5px 15px rgba(48,54,61,0.2);
|
||||
background: #2a3035;
|
||||
opacity: 0;
|
||||
cursor: default;
|
||||
pointer-events: none;
|
||||
padding:6px;
|
||||
border-radius:5px;
|
||||
}
|
||||
|
||||
.tooltip-effect-1 .tooltip-content {
|
||||
-webkit-transform: translate3d(0,-10px,0);
|
||||
transform: translate3d(0,-10px,0);
|
||||
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
|
||||
transition: opacity 0.3s, transform 0.3s;
|
||||
}
|
||||
|
||||
.tooltip-effect-2 .tooltip-content {
|
||||
-webkit-transform-origin: 50% calc(100% + 10px);
|
||||
transform-origin: 50% calc(100% + 10px);
|
||||
-webkit-transform: perspective(1000px) rotate3d(1,0,0,45deg);
|
||||
transform: perspective(1000px) rotate3d(1,0,0,45deg);
|
||||
-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
|
||||
transition: opacity 0.2s, transform 0.2s;
|
||||
}
|
||||
|
||||
.tooltip-effect-3 .tooltip-content {
|
||||
-webkit-transform: translate3d(0,10px,0) rotate3d(1,1,0,25deg);
|
||||
transform: translate3d(0,10px,0) rotate3d(1,1,0,25deg);
|
||||
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
|
||||
transition: opacity 0.3s, transform 0.3s;
|
||||
}
|
||||
|
||||
.tooltip-effect-4 .tooltip-content {
|
||||
-webkit-transform-origin: 50% 100%;
|
||||
transform-origin: 50% 100%;
|
||||
-webkit-transform: scale3d(0.7,0.3,1);
|
||||
transform: scale3d(0.7,0.3,1);
|
||||
-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
|
||||
transition: opacity 0.2s, transform 0.2s;
|
||||
}
|
||||
|
||||
.tooltip-effect-5 .tooltip-content {
|
||||
background: rgba(0,0,0,0.6);
|
||||
width: 279px;
|
||||
font-size:12px;
|
||||
margin-left: -255px;
|
||||
border-radius:6px;
|
||||
margin-top:100px;
|
||||
-webkit-transform-origin: 50% calc(100% + 6em);
|
||||
transform-origin: 50% calc(100% + 6em);
|
||||
-webkit-transform: rotate3d(0,0,1,15deg);
|
||||
transform: rotate3d(0,0,1,15deg);
|
||||
-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
|
||||
transition: opacity 0.2s, transform 0.2s;
|
||||
-webkit-transition-timing-function: ease, cubic-bezier(.17,.67,.4,1.39);
|
||||
transition-timing-function: ease, cubic-bezier(.17,.67,.4,1.39);
|
||||
}
|
||||
|
||||
.tooltip:hover .tooltip-content {
|
||||
pointer-events: auto;
|
||||
opacity: 1;
|
||||
-webkit-transform: translate3d(0,0,0) rotate3d(0,0,0,0);
|
||||
transform: translate3d(0,0,0) rotate3d(0,0,0,0);
|
||||
}
|
||||
|
||||
.tooltip.tooltip-effect-2:hover .tooltip-content {
|
||||
-webkit-transform: perspective(1000px) rotate3d(1,0,0,0deg);
|
||||
transform: perspective(1000px) rotate3d(1,0,0,0deg);
|
||||
}
|
||||
|
||||
/* Arrow */
|
||||
|
||||
.tooltip-content::after {
|
||||
content: '';
|
||||
top: 100%;
|
||||
left: 50%;
|
||||
border: solid transparent;
|
||||
height: 0;
|
||||
width: 0;
|
||||
position: absolute;
|
||||
pointer-events: none;
|
||||
margin-left: -10px;
|
||||
}
|
||||
|
||||
/* Tooltip content*/
|
||||
|
||||
.tooltip-content img {
|
||||
position: relative;
|
||||
height: 170px;
|
||||
display: block;
|
||||
float: left;
|
||||
margin-right: 1em;
|
||||
}
|
||||
|
||||
.tooltip-text {
|
||||
font-size: 10px;
|
||||
line-height: 1.35;
|
||||
display: block;
|
||||
padding: 1.31em 1.21em 1.21em 1.31em;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.tooltip-effect-5 .tooltip-text {
|
||||
padding: 1.4em;
|
||||
}
|
||||
|
||||
.tooltip-text a {
|
||||
font-weight: bold;
|
||||
}
|
||||
Binary file not shown.
Reference in New Issue
Block a user