-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrefolio.css
152 lines (133 loc) · 2.94 KB
/
refolio.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/** Contains all visible/hidden thumbnails **/
#slider {
position: relative;
left: 0;
}
/** The visible portion of the thumbnails **/
#sliderWrapper {
overflow: hidden;
height: 150px;
position: relative;
}
/** The list of items **/
#slider ul {
list-style: none;
padding: 0;
margin-left: 10px;
}
#slider ul li {
float: left;
margin: 10px;
}
/** Left arrow **/
.floatLeftArrowContainer {
position: absolute;
top: 0;
left: 0;
height: 125px;
width: 35px;
cursor: pointer;
}
.floatLeftArrow {
position: absolute;
top: 0;
left: 0;
margin-top: 60px;
opacity: 0.4;
background-color: #CCC;
padding: 10px;
}
/** Right arrow **/
.floatRightArrowContainer {
position: absolute;
top: 0;
height: 125px;
width: 35px;
cursor: pointer;
}
.floatRightArrow {
position: absolute;
top: 0;
left: 0;
margin-top: 60px;
opacity: 0.4;
background-color: #CCC;
padding: 10px;
}
/** Portfolio item title **/
.refolioTitle {
margin: 5px;
font-size: 140%;
text-decoration: none;
}
.refolioTitleLink {
text-decoration: none;
color: #585858;
}
.refolioTitleLink:hover {
color: #8ec63e;
}
/** Portfolio item description **/
.refolioDescription {
color: #6D6D6D;
/*padding: 10px;*/
margin: 15px 10px 15px 5px;
text-align: justify;
}
/** Container for entire refolio, only applied if styleContainer: true is set in options **/
.refolioContainer {
background: #fff;
border: 1px solid #D3D3D3;
-webkit-box-shadow: #E9E9E9 0 0px 1px 1px;
box-shadow: #E9E9E9 0 0px 1px 1px;
-webkit-border-radius: 3px;
border-radius: 3px;
border-width: 1px;
border-style: solid;
}
/** Tag styling **/
.refolioTag {
display: inline-block;
padding: 2px 4px;
font-size: 11.844px;
font-weight: bold;
line-height: 14px;
color: #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
white-space: nowrap;
vertical-align: baseline;
margin: 5px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
background-color: #3a87ad;
}
/** Thumbnail in the scroller **/
.refolioThumbnail {
border: 1px solid #eee;
padding: 2px;
overflow: hidden;
}
/** The title overlay that is shown when hovering over thumbnail **/
.refolioTitleOverlay {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 0;
text-align: center;
background-color: rgba(240, 240, 240, 0.9);
overflow: hidden;
color: #666674;
font-size: 18px;
}
/** Additional class added to the selected item title overlay **/
.refolioTitleOverlaySelected {
background-color: rgba(78, 166, 234, 0.95);
color: white;
}
/** The container for title,description,tags **/
.informationContainer
{
color: #585858;
}