Skip to content

Commit 4685d70

Browse files
committed
v2.2
0 parents  commit 4685d70

121 files changed

Lines changed: 8039 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

css/fonts/curlythemes.eot

20.2 KB
Binary file not shown.

css/fonts/curlythemes.svg

Lines changed: 51 additions & 0 deletions
Loading

css/fonts/curlythemes.ttf

20 KB
Binary file not shown.

css/fonts/curlythemes.woff

12.1 KB
Binary file not shown.

css/lightbox.css

Lines changed: 206 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,206 @@
1+
/* line 11, ../sass/lightbox.sass */
2+
.lightboxOverlay {
3+
position: absolute;
4+
top: 0;
5+
left: 0;
6+
z-index: 9999;
7+
background-color: black;
8+
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
9+
opacity: 0.8;
10+
display: none;
11+
}
12+
13+
/* line 20, ../sass/lightbox.sass */
14+
.lightbox {
15+
position: absolute;
16+
left: 0;
17+
width: 100%;
18+
z-index: 10000;
19+
text-align: center;
20+
line-height: 0;
21+
font-weight: normal;
22+
}
23+
/* line 28, ../sass/lightbox.sass */
24+
.lightbox .lb-image {
25+
display: block;
26+
height: auto;
27+
-webkit-border-radius: 3px;
28+
-moz-border-radius: 3px;
29+
-ms-border-radius: 3px;
30+
-o-border-radius: 3px;
31+
border-radius: 3px;
32+
}
33+
.lb-image{
34+
max-width: inherit;
35+
}
36+
/* line 32, ../sass/lightbox.sass */
37+
.lightbox a img {
38+
border: none;
39+
}
40+
41+
/* line 35, ../sass/lightbox.sass */
42+
.lb-outerContainer {
43+
position: relative;
44+
background-color: white;
45+
*zoom: 1;
46+
width: 250px;
47+
height: 250px;
48+
margin: 0 auto;
49+
-webkit-border-radius: 4px;
50+
-moz-border-radius: 4px;
51+
-ms-border-radius: 4px;
52+
-o-border-radius: 4px;
53+
border-radius: 4px;
54+
}
55+
/* line 38, ../../../../.rvm/gems/ruby-1.9.3-p392/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
56+
.lb-outerContainer:after {
57+
content: "";
58+
display: table;
59+
clear: both;
60+
}
61+
62+
/* line 44, ../sass/lightbox.sass */
63+
.lb-container {
64+
padding: 4px;
65+
}
66+
67+
/* line 47, ../sass/lightbox.sass */
68+
.lb-loader {
69+
position: absolute;
70+
top: 43%;
71+
left: 0%;
72+
height: 25%;
73+
width: 100%;
74+
text-align: center;
75+
line-height: 0;
76+
}
77+
78+
79+
/* line 63, ../sass/lightbox.sass */
80+
.lb-nav {
81+
position: absolute;
82+
top: 0;
83+
left: 0;
84+
height: 100%;
85+
width: 100%;
86+
z-index: 10;
87+
}
88+
89+
/* line 71, ../sass/lightbox.sass */
90+
.lb-container > .nav {
91+
left: 0;
92+
}
93+
94+
/* line 74, ../sass/lightbox.sass */
95+
.lb-nav a {
96+
outline: none;
97+
}
98+
99+
/* line 77, ../sass/lightbox.sass */
100+
.lb-prev, .lb-next {
101+
width: 49%;
102+
height: 100%;
103+
cursor: pointer;
104+
/* Trick IE into showing hover */
105+
display: block;
106+
position: relative;
107+
}
108+
109+
/* line 84, ../sass/lightbox.sass */
110+
.lb-prev {
111+
left: 0;
112+
float: left;
113+
}
114+
/* line 87, ../sass/lightbox.sass */
115+
.lb-prev:hover:after {
116+
content: '\F104';
117+
font-family: 'FontAwesome';
118+
text-shadow: 0px 0px 3px #000000;
119+
color: #fff;
120+
font-size: 64px;
121+
position: absolute;
122+
top: 50%;
123+
left: 10px;
124+
}
125+
126+
/* line 90, ../sass/lightbox.sass */
127+
.lb-next {
128+
right: 0;
129+
float: right;
130+
}
131+
/* line 93, ../sass/lightbox.sass */
132+
.lb-next:hover:after {
133+
content: '\F105';
134+
font-family: 'FontAwesome';
135+
text-shadow: 0px 0px 3px #000000;
136+
color: #fff;
137+
font-size: 64px;
138+
position: absolute;
139+
top: 50%;
140+
right: 10px;
141+
}
142+
143+
/* line 96, ../sass/lightbox.sass */
144+
.lb-dataContainer {
145+
margin: 0 auto;
146+
padding-top: 5px;
147+
*zoom: 1;
148+
width: 100%;
149+
-moz-border-radius-bottomleft: 4px;
150+
-webkit-border-bottom-left-radius: 4px;
151+
border-bottom-left-radius: 4px;
152+
-moz-border-radius-bottomright: 4px;
153+
-webkit-border-bottom-right-radius: 4px;
154+
border-bottom-right-radius: 4px;
155+
}
156+
/* line 38, ../../../../.rvm/gems/ruby-1.9.3-p392/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
157+
.lb-dataContainer:after {
158+
content: "";
159+
display: table;
160+
clear: both;
161+
}
162+
163+
/* line 103, ../sass/lightbox.sass */
164+
.lb-data {
165+
padding: 0 4px;
166+
color: #bbbbbb;
167+
}
168+
/* line 106, ../sass/lightbox.sass */
169+
.lb-data .lb-details {
170+
width: 85%;
171+
float: left;
172+
text-align: left;
173+
line-height: 1.1em;
174+
}
175+
/* line 111, ../sass/lightbox.sass */
176+
.lb-data .lb-caption {
177+
font-size: 13px;
178+
font-weight: bold;
179+
line-height: 1em;
180+
}
181+
/* line 115, ../sass/lightbox.sass */
182+
.lb-data .lb-number {
183+
display: none !important;
184+
clear: left;
185+
padding-bottom: 1em;
186+
font-size: 12px;
187+
color: #999999;
188+
}
189+
/* line 121, ../sass/lightbox.sass */
190+
.lb-data .lb-close:after {
191+
display: block;
192+
float: right;
193+
content: '\F00D';
194+
font-family: 'FontAwesome';
195+
margin-top: 10px;
196+
font-size: 24px;
197+
color: #fff;
198+
outline: none;
199+
cursor: pointer;
200+
}
201+
/* line 130, ../sass/lightbox.sass */
202+
.lb-data .lb-close:hover {
203+
cursor: pointer;
204+
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
205+
opacity: 1;
206+
}

0 commit comments

Comments
 (0)