2011-07-24 14:52:46 +04:00
|
|
|
|
/*
|
|
|
|
|
Ribbon theme for Shower presentation template: http://github.com/pepelsbey/shower
|
|
|
|
|
Copyright © 2010–2011 Vadim Makeev, http://pepelsbey.net/
|
|
|
|
|
Licensed under MIT license: https://github.com/pepelsbey/shower/wiki/License
|
|
|
|
|
*/
|
|
|
|
|
|
2011-07-12 15:08:29 +04:00
|
|
|
|
@import url(fonts.css);
|
2011-07-15 04:53:20 +04:00
|
|
|
|
@import url(reset.css);
|
2011-07-12 15:08:29 +04:00
|
|
|
|
|
|
|
|
|
BODY {
|
|
|
|
|
font:25px/1.8 'PT Sans', sans-serif;
|
2011-07-15 04:53:20 +04:00
|
|
|
|
counter-reset:paging;
|
2011-07-12 15:08:29 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Slide
|
|
|
|
|
---------------------------------------- */
|
2011-07-23 08:28:57 +04:00
|
|
|
|
.slide:after {
|
|
|
|
|
counter-increment:paging;
|
|
|
|
|
content:counter(paging, decimal-leading-zero);
|
2011-07-12 15:08:29 +04:00
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.slide section {
|
2011-07-23 08:28:57 +04:00
|
|
|
|
padding:80px 120px 0;
|
|
|
|
|
width:784px;
|
|
|
|
|
height:560px;
|
|
|
|
|
background:#FFF;
|
|
|
|
|
color:#000;
|
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.slide section:before {
|
2011-07-23 08:28:57 +04:00
|
|
|
|
position:absolute;
|
|
|
|
|
top:0;
|
|
|
|
|
right:120px;
|
|
|
|
|
width:40px;
|
|
|
|
|
height:120px;
|
2011-11-29 13:31:53 +04:00
|
|
|
|
background:url(../images/ribbon.svg) no-repeat;
|
|
|
|
|
content:'';
|
2011-07-12 15:08:29 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Header */
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.slide header {
|
2011-07-12 15:08:29 +04:00
|
|
|
|
margin:0 0 58px;
|
|
|
|
|
color:#666;
|
|
|
|
|
font:bold 40px/1.13 'PT Sans Narrow', sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Elements */
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.slide p {
|
2011-07-12 15:08:29 +04:00
|
|
|
|
margin:0 0 45px;
|
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.slide p.note {
|
2011-07-20 02:57:19 +04:00
|
|
|
|
color:#888;
|
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.slide a {
|
2011-07-12 15:08:29 +04:00
|
|
|
|
border-bottom:0.1em solid;
|
|
|
|
|
color:#0174A7;
|
|
|
|
|
text-decoration:none;
|
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.slide a[target=_blank] {
|
2011-07-12 15:08:29 +04:00
|
|
|
|
margin-right:22px;
|
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.slide a[target=_blank]:after {
|
2011-07-12 15:08:29 +04:00
|
|
|
|
position:absolute;
|
|
|
|
|
margin-left:7px;
|
|
|
|
|
font-family:'Target Blank';
|
|
|
|
|
content:'\005E';
|
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.slide b,
|
|
|
|
|
.slide strong {
|
2011-07-12 15:08:29 +04:00
|
|
|
|
font-weight:bold;
|
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.slide i,
|
|
|
|
|
.slide em {
|
2011-07-12 15:08:29 +04:00
|
|
|
|
font-style:italic;
|
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.slide kbd,
|
|
|
|
|
.slide code {
|
2011-07-12 15:08:29 +04:00
|
|
|
|
padding:3px 8px;
|
|
|
|
|
-webkit-border-radius:8px;
|
|
|
|
|
-moz-border-radius:8px;
|
|
|
|
|
border-radius:8px;
|
|
|
|
|
background:#FAFAA2;
|
2012-02-26 05:50:20 +04:00
|
|
|
|
color:#000;
|
2011-07-12 15:08:29 +04:00
|
|
|
|
-webkit-tab-size:4;
|
|
|
|
|
-moz-tab-size:4;
|
|
|
|
|
-o-tab-size:4;
|
|
|
|
|
tab-size:4;
|
2012-01-02 02:56:16 +04:00
|
|
|
|
font-family:'PT Mono', monospace;
|
2011-07-12 15:08:29 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Quote */
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.slide blockquote {
|
2011-07-12 15:08:29 +04:00
|
|
|
|
font-style:italic;
|
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.slide blockquote:before {
|
2011-07-12 15:08:29 +04:00
|
|
|
|
position:absolute;
|
|
|
|
|
margin:-15px 0 0 -80px;
|
|
|
|
|
color:#CCC;
|
|
|
|
|
font:200px/1 'PT Sans', sans-serif;
|
|
|
|
|
content:'\201C'; /* ldquo */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Lists */
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.slide ol,
|
|
|
|
|
.slide ul {
|
2011-07-12 15:08:29 +04:00
|
|
|
|
margin:0 0 45px;
|
|
|
|
|
counter-reset:list;
|
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.slide ul ul,
|
|
|
|
|
.slide ol ul,
|
|
|
|
|
.slide ol ol,
|
|
|
|
|
.slide ul ol {
|
2011-07-12 15:08:29 +04:00
|
|
|
|
margin:0 0 0 38px;
|
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.slide ol > li:before,
|
|
|
|
|
.slide ul > li:before {
|
2011-07-12 15:08:29 +04:00
|
|
|
|
position:absolute;
|
|
|
|
|
margin-left:-120px;
|
|
|
|
|
width:100px;
|
|
|
|
|
color:#BBB;
|
|
|
|
|
text-align:right;
|
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.slide ul > li:before {
|
2011-07-12 15:08:29 +04:00
|
|
|
|
content:'\2022'; /* bull */
|
|
|
|
|
line-height:1.1;
|
|
|
|
|
font-size:40px;
|
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.slide ol > li:before {
|
2011-07-12 15:08:29 +04:00
|
|
|
|
counter-increment:list;
|
|
|
|
|
content:counter(list)'.';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Code */
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.slide pre {
|
2011-07-12 15:08:29 +04:00
|
|
|
|
margin:0 0 45px;
|
|
|
|
|
counter-reset:code;
|
|
|
|
|
white-space:normal;
|
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.slide pre code {
|
2011-07-12 15:08:29 +04:00
|
|
|
|
display:block;
|
|
|
|
|
padding:0;
|
|
|
|
|
background:none;
|
|
|
|
|
white-space:pre;
|
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.slide pre code:before {
|
2011-07-12 15:08:29 +04:00
|
|
|
|
position:absolute;
|
|
|
|
|
margin:0 0 0 -120px;
|
|
|
|
|
width:110px;
|
|
|
|
|
color:#BBB;
|
|
|
|
|
text-align:right;
|
|
|
|
|
counter-increment:code;
|
|
|
|
|
content:counter(code, decimal-leading-zero)'.';
|
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.slide pre mark {
|
2011-07-12 15:08:29 +04:00
|
|
|
|
padding:3px 8px;
|
|
|
|
|
-webkit-border-radius:8px;
|
|
|
|
|
-moz-border-radius:8px;
|
|
|
|
|
border-radius:8px;
|
|
|
|
|
background:#FAFAA2;
|
|
|
|
|
color:#000;
|
|
|
|
|
font-style:normal;
|
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.slide pre .important {
|
2011-07-12 15:08:29 +04:00
|
|
|
|
background:#C00;
|
|
|
|
|
color:#FFF;
|
|
|
|
|
font-weight:normal;
|
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.slide pre .comment {
|
2012-02-27 08:19:11 +04:00
|
|
|
|
padding:0;
|
|
|
|
|
background:none;
|
|
|
|
|
color:#888;
|
|
|
|
|
}
|
2011-07-12 15:08:29 +04:00
|
|
|
|
|
2012-02-28 17:20:18 +04:00
|
|
|
|
/* Cover */
|
|
|
|
|
.slide.cover section {
|
|
|
|
|
background:#000;
|
|
|
|
|
overflow:hidden;
|
2011-07-12 15:08:29 +04:00
|
|
|
|
}
|
2012-02-28 17:20:18 +04:00
|
|
|
|
.slide.cover section:before {
|
2011-11-29 13:31:53 +04:00
|
|
|
|
display:none;
|
2011-07-12 15:08:29 +04:00
|
|
|
|
}
|
2012-02-28 17:20:18 +04:00
|
|
|
|
.slide.cover img,
|
|
|
|
|
.slide.cover svg,
|
|
|
|
|
.slide.cover video,
|
|
|
|
|
.slide.cover object {
|
2011-07-16 19:07:52 +04:00
|
|
|
|
position:absolute;
|
|
|
|
|
top:0;
|
2012-02-28 17:20:18 +04:00
|
|
|
|
left:50%;
|
2011-07-16 19:07:52 +04:00
|
|
|
|
z-index:-1;
|
2012-02-28 17:20:18 +04:00
|
|
|
|
height:100%;
|
|
|
|
|
-webkit-transform:translateX(-50%);
|
|
|
|
|
-moz-transform:translateX(-50%);
|
|
|
|
|
-ms-transform:translateX(-50%);
|
|
|
|
|
-o-transform:translateX(-50%);
|
|
|
|
|
transform:translateX(-50%);
|
|
|
|
|
}
|
|
|
|
|
.slide.cover.w img,
|
|
|
|
|
.slide.cover.w svg,
|
|
|
|
|
.slide.cover.w video,
|
|
|
|
|
.slide.cover.w object {
|
|
|
|
|
top:50%;
|
|
|
|
|
left:0;
|
2011-07-20 02:57:19 +04:00
|
|
|
|
width:100%;
|
2012-02-28 17:20:18 +04:00
|
|
|
|
height:auto;
|
|
|
|
|
-webkit-transform:translateY(-50%);
|
|
|
|
|
-moz-transform:translateY(-50%);
|
|
|
|
|
-ms-transform:translateY(-50%);
|
|
|
|
|
-o-transform:translateY(-50%);
|
|
|
|
|
transform:translateY(-50%);
|
2011-07-16 19:07:52 +04:00
|
|
|
|
}
|
2011-07-12 15:08:29 +04:00
|
|
|
|
|
2011-07-15 04:53:20 +04:00
|
|
|
|
/* Shout */
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.slide.shout section:before {
|
2011-07-17 23:12:53 +04:00
|
|
|
|
display:none;
|
2011-07-12 15:08:29 +04:00
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.slide.shout h2 {
|
2011-07-17 23:12:53 +04:00
|
|
|
|
position:absolute;
|
|
|
|
|
top:50%;
|
|
|
|
|
left:0;
|
|
|
|
|
width:100%;
|
|
|
|
|
text-align:center;
|
|
|
|
|
line-height:1;
|
|
|
|
|
font-size:150px;
|
2011-08-01 01:42:17 +04:00
|
|
|
|
-webkit-transform:translateY(-50%);
|
|
|
|
|
-moz-transform:translateY(-50%);
|
|
|
|
|
-ms-transform:translateY(-50%);
|
|
|
|
|
-o-transform:translateY(-50%);
|
|
|
|
|
transform:translateY(-50%);
|
2011-07-17 23:12:53 +04:00
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.slide.shout h2 a[target=_blank] {
|
2011-07-17 23:12:53 +04:00
|
|
|
|
margin:0;
|
2011-07-12 15:08:29 +04:00
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.slide.shout h2 a[target=_blank]:after {
|
2011-07-17 23:12:53 +04:00
|
|
|
|
content:'';
|
2011-07-12 15:08:29 +04:00
|
|
|
|
}
|
2011-07-16 19:07:52 +04:00
|
|
|
|
|
2011-08-01 01:42:17 +04:00
|
|
|
|
/* Middle */
|
|
|
|
|
.middle {
|
|
|
|
|
position:absolute;
|
|
|
|
|
top:50%;
|
|
|
|
|
left:50%;
|
|
|
|
|
-webkit-transform:translate(-50%, -50%);
|
|
|
|
|
-moz-transform:translate(-50%, -50%);
|
|
|
|
|
-ms-transform:translate(-50%, -50%);
|
|
|
|
|
-o-transform:translate(-50%, -50%);
|
|
|
|
|
transform:translate(-50%, -50%);
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-16 19:07:52 +04:00
|
|
|
|
/* List
|
|
|
|
|
---------------------------------------- */
|
|
|
|
|
.list {
|
|
|
|
|
float:left;
|
|
|
|
|
padding:80px 0 80px 100px;
|
|
|
|
|
background:#585A5E url(../images/linen.png);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Caption */
|
|
|
|
|
.list .caption {
|
|
|
|
|
color:#3C3D40;
|
|
|
|
|
text-shadow:0 1px 1px #8D8E90;
|
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.list .caption h1 {
|
2011-07-16 19:07:52 +04:00
|
|
|
|
font:bold 50px/1 'PT Sans Narrow', sans-serif;
|
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.list .caption a {
|
2011-11-29 13:31:53 +04:00
|
|
|
|
color:#4B86C2;
|
|
|
|
|
text-shadow:0 -1px 1px #1F3F60;
|
|
|
|
|
text-decoration:none;
|
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.list .caption a:hover {
|
2011-11-29 13:31:53 +04:00
|
|
|
|
color:#5ca4ed;
|
|
|
|
|
}
|
2011-07-16 19:07:52 +04:00
|
|
|
|
|
|
|
|
|
/* Slide */
|
|
|
|
|
.list .slide {
|
|
|
|
|
position:relative;
|
|
|
|
|
float:left;
|
|
|
|
|
margin:0 50px 0 0;
|
|
|
|
|
padding:80px 0 0;
|
|
|
|
|
}
|
|
|
|
|
.list .slide:after {
|
|
|
|
|
position:absolute;
|
|
|
|
|
bottom:-45px;
|
2012-01-08 13:57:08 +04:00
|
|
|
|
left:60px;
|
2011-07-16 19:07:52 +04:00
|
|
|
|
color:#3C3D40;
|
|
|
|
|
text-shadow:0 1px 1px #8D8E90;
|
|
|
|
|
line-height:1;
|
|
|
|
|
font-weight:bold;
|
|
|
|
|
font-size:25px;
|
|
|
|
|
}
|
|
|
|
|
.list .slide:target:after {
|
|
|
|
|
text-shadow:0 -1px 1px #1F3F60;
|
|
|
|
|
color:#4B86C2;
|
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.list .slide > div {
|
2011-07-16 19:07:52 +04:00
|
|
|
|
position:relative;
|
|
|
|
|
overflow:hidden;
|
|
|
|
|
width:512px;
|
|
|
|
|
height:320px;
|
|
|
|
|
box-shadow:0 0 50px #3C3D40;
|
|
|
|
|
border-radius:1px;
|
2011-07-16 20:19:37 +04:00
|
|
|
|
background:rgba(0, 0, 0, 0.3);
|
2011-07-16 19:07:52 +04:00
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.list .slide > div:hover {
|
2011-07-16 19:07:52 +04:00
|
|
|
|
box-shadow:
|
|
|
|
|
0 0 0 10px rgba(60, 61, 64, 0.6),
|
|
|
|
|
0 0 50px #3C3D40;
|
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.list .slide:target > div {
|
2011-07-16 19:07:52 +04:00
|
|
|
|
box-shadow:
|
|
|
|
|
0 0 0 1px #305F8D,
|
|
|
|
|
0 0 0 10px #3C7CBD,
|
|
|
|
|
0 0 50px #3C3D40;
|
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.list .slide section {
|
2011-07-16 19:07:52 +04:00
|
|
|
|
-webkit-transform-origin:0 0;
|
|
|
|
|
-webkit-transform:scale(0.5);
|
|
|
|
|
-moz-transform-origin:0 0;
|
|
|
|
|
-moz-transform:scale(0.5);
|
|
|
|
|
-ms-transform-origin:0 0;
|
|
|
|
|
-ms-transform:scale(0.5);
|
|
|
|
|
-o-transform-origin:0 0;
|
|
|
|
|
-o-transform:scale(0.5);
|
|
|
|
|
transform-origin:0 0;
|
|
|
|
|
transform:scale(0.5);
|
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.list .slide section:after {
|
2011-07-16 19:07:52 +04:00
|
|
|
|
position:absolute;
|
|
|
|
|
top:0;
|
|
|
|
|
right:0;
|
|
|
|
|
bottom:0;
|
|
|
|
|
left:0;
|
|
|
|
|
content:'';
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-08 13:57:08 +04:00
|
|
|
|
/* Small */
|
|
|
|
|
@media all and (max-width:1274px) {
|
|
|
|
|
.list .slide:after {
|
|
|
|
|
left:30px;
|
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.list .slide > div {
|
2012-01-08 13:57:08 +04:00
|
|
|
|
width:256px;
|
|
|
|
|
height:160px;
|
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.list .slide section {
|
2012-01-08 13:57:08 +04:00
|
|
|
|
-webkit-transform:scale(0.25);
|
|
|
|
|
-moz-transform:scale(0.25);
|
|
|
|
|
-ms-transform:scale(0.25);
|
|
|
|
|
-o-transform:scale(0.25);
|
|
|
|
|
transform:scale(0.25);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-16 19:07:52 +04:00
|
|
|
|
/* Full
|
|
|
|
|
---------------------------------------- */
|
|
|
|
|
.full {
|
|
|
|
|
position:absolute;
|
|
|
|
|
top:50%;
|
|
|
|
|
left:50%;
|
|
|
|
|
overflow:hidden;
|
|
|
|
|
margin:-320px 0 0 -512px;
|
|
|
|
|
width:1024px;
|
|
|
|
|
height:640px;
|
|
|
|
|
background:#000;
|
|
|
|
|
}
|
|
|
|
|
.full .caption {
|
|
|
|
|
display:none;
|
|
|
|
|
}
|
|
|
|
|
.full .slide {
|
2011-07-20 03:04:13 +04:00
|
|
|
|
position:absolute;
|
2011-07-17 23:12:53 +04:00
|
|
|
|
visibility:hidden;
|
2011-07-16 19:07:52 +04:00
|
|
|
|
}
|
2011-07-20 02:57:19 +04:00
|
|
|
|
.full .slide:target {
|
|
|
|
|
visibility:visible;
|
|
|
|
|
}
|
2011-07-16 19:07:52 +04:00
|
|
|
|
.full .slide:after {
|
|
|
|
|
position:absolute;
|
|
|
|
|
bottom:85px;
|
|
|
|
|
left:120px;
|
|
|
|
|
color:#BBB;
|
|
|
|
|
line-height:1;
|
|
|
|
|
}
|
2012-02-28 15:06:36 +04:00
|
|
|
|
.full .slide section {
|
2011-07-20 02:57:19 +04:00
|
|
|
|
-webkit-transform:scale(1);
|
|
|
|
|
-moz-transform:scale(1);
|
|
|
|
|
-ms-transform:scale(1);
|
|
|
|
|
-o-transform:scale(1);
|
|
|
|
|
transform:scale(1);
|
|
|
|
|
}
|
2012-02-28 17:20:18 +04:00
|
|
|
|
.full .slide.cover {
|
2011-07-20 03:25:00 +04:00
|
|
|
|
z-index:1;
|
|
|
|
|
}
|
2012-02-28 17:20:18 +04:00
|
|
|
|
.full .slide.cover:after,
|
2011-07-20 03:25:00 +04:00
|
|
|
|
.full .slide.shout:after {
|
|
|
|
|
content:'';
|
|
|
|
|
}
|
2011-07-16 19:07:52 +04:00
|
|
|
|
|
2011-07-23 08:28:57 +04:00
|
|
|
|
/* Inner Navigation */
|
2012-03-01 09:05:43 +04:00
|
|
|
|
.full .next {
|
2011-07-23 08:28:57 +04:00
|
|
|
|
opacity:0;
|
2012-01-08 13:57:48 +04:00
|
|
|
|
}
|
2012-03-01 09:05:43 +04:00
|
|
|
|
.full .next.active {
|
2012-01-08 13:57:48 +04:00
|
|
|
|
opacity:1;
|
2011-07-23 08:28:57 +04:00
|
|
|
|
-webkit-transition:opacity 0.5s linear;
|
|
|
|
|
-moz-transition:opacity 0.5s linear;
|
|
|
|
|
-ms-transition:opacity 0.5s linear;
|
|
|
|
|
-o-transition:opacity 0.5s linear;
|
|
|
|
|
transition:opacity 0.5s linear;
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-16 19:07:52 +04:00
|
|
|
|
/* Progress */
|
|
|
|
|
.full .progress {
|
|
|
|
|
position:absolute;
|
|
|
|
|
right:118px;
|
|
|
|
|
bottom:49px;
|
|
|
|
|
left:118px;
|
|
|
|
|
border-radius:7px;
|
|
|
|
|
border:2px solid rgba(255, 255, 255, 0.2);
|
|
|
|
|
}
|
|
|
|
|
.full .progress DIV {
|
|
|
|
|
width:0;
|
|
|
|
|
height:10px;
|
|
|
|
|
border-radius:5px;
|
|
|
|
|
background:rgba(177, 177, 177, 0.4);
|
|
|
|
|
-webkit-transition:width 0.2s linear;
|
|
|
|
|
-moz-transition:width 0.2s linear;
|
|
|
|
|
-ms-transition:width 0.2s linear;
|
|
|
|
|
-o-transition:width 0.2s linear;
|
|
|
|
|
transition:width 0.2s linear;
|
|
|
|
|
}
|
|
|
|
|
.full .progress-off {
|
|
|
|
|
z-index:1;
|
2012-03-01 09:05:43 +04:00
|
|
|
|
}
|