guayoyo 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- metadata +5 -52
- data/LICENSE.txt +0 -21
- data/README.md +0 -52
- data/_includes/footer.html +0 -5
- data/_includes/head.html +0 -85
- data/_layouts/default.html +0 -74
- data/_layouts/page.html +0 -5
- data/_layouts/post.html +0 -7
- data/assets/css/bootstrap.min.css +0 -7
- data/assets/css/font-awesome.css.map +0 -7
- data/assets/css/font-awesome.min.css +0 -4
- data/assets/css/fonts.css +0 -49
- data/assets/css/main.css +0 -190
- data/assets/css/projects.css +0 -80
- data/assets/css/super-search.css +0 -41
- data/assets/css/syntax.css +0 -65
- data/assets/css/thickbox.css +0 -159
- data/assets/fonts/FontAwesome.otf +0 -0
- data/assets/fonts/fontawesome-webfont.eot +0 -0
- data/assets/fonts/fontawesome-webfont.svg +0 -685
- data/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/assets/fonts/fontawesome-webfont.woff +0 -0
- data/assets/fonts/fontawesome-webfont.woff2 +0 -0
- data/assets/fonts/roboto-condensed-v16-latin-ext_latin-300.woff +0 -0
- data/assets/fonts/roboto-condensed-v16-latin-ext_latin-300.woff2 +0 -0
- data/assets/fonts/roboto-condensed-v16-latin-ext_latin-300italic.woff +0 -0
- data/assets/fonts/roboto-condensed-v16-latin-ext_latin-300italic.woff2 +0 -0
- data/assets/fonts/roboto-condensed-v16-latin-ext_latin-700.woff +0 -0
- data/assets/fonts/roboto-condensed-v16-latin-ext_latin-700.woff2 +0 -0
- data/assets/fonts/roboto-condensed-v16-latin-ext_latin-italic.woff +0 -0
- data/assets/fonts/roboto-condensed-v16-latin-ext_latin-italic.woff2 +0 -0
- data/assets/fonts/roboto-condensed-v16-latin-ext_latin-regular.woff +0 -0
- data/assets/fonts/roboto-condensed-v16-latin-ext_latin-regular.woff2 +0 -0
- data/assets/img/_posts/hello-jekyll/01.png +0 -0
- data/assets/img/_posts/hello-jekyll/02.png +0 -0
- data/assets/img/_posts/hello-jekyll/03.png +0 -0
- data/assets/img/_posts/hello-jekyll/04.png +0 -0
- data/assets/img/favicon.ico +0 -0
- data/assets/img/loadingAnimation.gif +0 -0
- data/assets/img/paleta.png +0 -0
- data/assets/img/profile.png +0 -0
- data/assets/img/subtle_dots.png +0 -0
- data/assets/js/bootstrap.min.js +0 -6
- data/assets/js/jquery-1.11.0.min.js +0 -4
- data/assets/js/jquery-migrate-1.2.1.min.js +0 -2
- data/assets/js/projects.js +0 -41
- data/assets/js/super-search.js +0 -139
- data/assets/js/thickbox-compressed.js +0 -10
data/assets/css/thickbox.css
DELETED
@@ -1,159 +0,0 @@
|
|
1
|
-
/* ---- global settings needed for thickbox ---- */
|
2
|
-
/*
|
3
|
-
*{padding: 0; margin: 0;}
|
4
|
-
*/
|
5
|
-
|
6
|
-
/* ---- thickbox specific link and font settings ---- */
|
7
|
-
#TB_window {
|
8
|
-
font: 12px Arial, Helvetica, sans-serif;
|
9
|
-
color: #333333;
|
10
|
-
}
|
11
|
-
|
12
|
-
#TB_secondLine {
|
13
|
-
font: 10px Arial, Helvetica, sans-serif;
|
14
|
-
color:#666666;
|
15
|
-
}
|
16
|
-
|
17
|
-
#TB_window a:link {color: #666666;}
|
18
|
-
#TB_window a:visited {color: #666666;}
|
19
|
-
#TB_window a:hover {color: #000;}
|
20
|
-
#TB_window a:active {color: #666666;}
|
21
|
-
#TB_window a:focus{color: #666666;}
|
22
|
-
|
23
|
-
/* ---- thickbox settings ---- */
|
24
|
-
#TB_overlay {
|
25
|
-
position: fixed;
|
26
|
-
z-index:100;
|
27
|
-
top: 0px;
|
28
|
-
left: 0px;
|
29
|
-
height:100%;
|
30
|
-
width:100%;
|
31
|
-
}
|
32
|
-
|
33
|
-
.TB_overlayMacFFBGHack {background: url(/static/img/macFFBgHack.png) repeat;}
|
34
|
-
.TB_overlayBG {
|
35
|
-
background-color:#000;
|
36
|
-
filter:alpha(opacity=75);
|
37
|
-
-moz-opacity: 0.75;
|
38
|
-
opacity: 0.75;
|
39
|
-
}
|
40
|
-
|
41
|
-
* html #TB_overlay { /* ie6 hack */
|
42
|
-
position: absolute;
|
43
|
-
height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
|
44
|
-
}
|
45
|
-
|
46
|
-
#TB_window {
|
47
|
-
position: fixed;
|
48
|
-
background: #ffffff;
|
49
|
-
z-index: 102;
|
50
|
-
color:#000000;
|
51
|
-
display:none;
|
52
|
-
border: 4px solid #525252;
|
53
|
-
text-align:left;
|
54
|
-
top:50%;
|
55
|
-
left:50%;
|
56
|
-
}
|
57
|
-
|
58
|
-
* html #TB_window { /* ie6 hack */
|
59
|
-
position: absolute;
|
60
|
-
margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
|
61
|
-
}
|
62
|
-
|
63
|
-
#TB_window img#TB_Image {
|
64
|
-
display:block;
|
65
|
-
margin: 15px 0 0 15px;
|
66
|
-
border-right: 1px solid #ccc;
|
67
|
-
border-bottom: 1px solid #ccc;
|
68
|
-
border-top: 1px solid #666;
|
69
|
-
border-left: 1px solid #666;
|
70
|
-
}
|
71
|
-
|
72
|
-
#TB_caption{
|
73
|
-
height:25px;
|
74
|
-
padding:7px 30px 10px 25px;
|
75
|
-
float:left;
|
76
|
-
}
|
77
|
-
|
78
|
-
#TB_closeWindow{
|
79
|
-
height: 35px;
|
80
|
-
padding: 10px 15px 10px 0;
|
81
|
-
float: right;
|
82
|
-
}
|
83
|
-
|
84
|
-
#TB_closeAjaxWindow{
|
85
|
-
padding:7px 10px 5px 0;
|
86
|
-
margin-bottom:1px;
|
87
|
-
text-align:right;
|
88
|
-
float:right;
|
89
|
-
}
|
90
|
-
|
91
|
-
#TB_ajaxWindowTitle{
|
92
|
-
float:left;
|
93
|
-
padding:7px 0 5px 10px;
|
94
|
-
margin-bottom:1px;
|
95
|
-
}
|
96
|
-
|
97
|
-
#TB_title{
|
98
|
-
background-color:#e8e8e8;
|
99
|
-
height:27px;
|
100
|
-
}
|
101
|
-
|
102
|
-
#TB_ajaxContent{
|
103
|
-
clear:both;
|
104
|
-
padding:2px 15px 15px 15px;
|
105
|
-
overflow:auto;
|
106
|
-
text-align:left;
|
107
|
-
line-height:1.4em;
|
108
|
-
}
|
109
|
-
|
110
|
-
#TB_ajaxContent.TB_modal{
|
111
|
-
padding:15px;
|
112
|
-
}
|
113
|
-
|
114
|
-
#TB_ajaxContent p{
|
115
|
-
padding:5px 0px 5px 0px;
|
116
|
-
}
|
117
|
-
|
118
|
-
#TB_load{
|
119
|
-
position: fixed;
|
120
|
-
display:none;
|
121
|
-
height:13px;
|
122
|
-
width:208px;
|
123
|
-
z-index:103;
|
124
|
-
top: 50%;
|
125
|
-
left: 50%;
|
126
|
-
margin: -6px 0 0 -104px; /* -height/2 0 0 -width/2 */
|
127
|
-
}
|
128
|
-
|
129
|
-
* html #TB_load { /* ie6 hack */
|
130
|
-
position: absolute;
|
131
|
-
margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
|
132
|
-
}
|
133
|
-
|
134
|
-
#TB_HideSelect{
|
135
|
-
z-index:99;
|
136
|
-
position:fixed;
|
137
|
-
top: 0;
|
138
|
-
left: 0;
|
139
|
-
background-color:#fff;
|
140
|
-
border:none;
|
141
|
-
filter:alpha(opacity=0);
|
142
|
-
-moz-opacity: 0;
|
143
|
-
opacity: 0;
|
144
|
-
height:100%;
|
145
|
-
width:100%;
|
146
|
-
}
|
147
|
-
|
148
|
-
* html #TB_HideSelect { /* ie6 hack */
|
149
|
-
position: absolute;
|
150
|
-
height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
|
151
|
-
}
|
152
|
-
|
153
|
-
#TB_iframeContent{
|
154
|
-
clear:both;
|
155
|
-
border:none;
|
156
|
-
margin-bottom:-1px;
|
157
|
-
margin-top:1px;
|
158
|
-
_margin-bottom:1px;
|
159
|
-
}
|
Binary file
|
Binary file
|