Skip to content

Commit 27af37b

Browse files
committed
align maintainer and star
1 parent 92fd71e commit 27af37b

File tree

6 files changed

+35
-25
lines changed

6 files changed

+35
-25
lines changed

css/app.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

html/index.jade

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -293,27 +293,27 @@ html(lang='en')
293293
==================================================
294294
// Placed at the end of the document so the pages load faster
295295
script(src='//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js')
296-
script(src='js/bootstrap.min.js')
296+
script(src='/js/bootstrap.min.js')
297297
// build:js dist/js/app.js
298-
script(src='vendor/zepto/zepto.js')
299-
script(src='vendor/jsonlint/lib/jsonlint.js')
300-
script(src='vendor/json-sans-eval-min/index.js')
301-
script(src='vendor/codemirror/lib/codemirror.js')
302-
script(src='vendor/codemirror/mode/javascript/javascript.js')
303-
script(src='vendor/codemirror/addon/lint/lint.js')
304-
script(src='vendor/codemirror/addon/lint/javascript-lint.js')
305-
script(src='vendor/codemirror/addon/lint/json-lint.js')
306-
script(src='vendor/jsrsasign/index.js')
307-
script(src='vendor/jws.js/index.js')
308-
script(src='js/jwt_mode.js')
309-
script(src='js/jwt.js')
310-
311-
script(src='js/isotope.pkgd.min.js')
312-
script(src='js/flipclock.js')
313-
script(src='js/accordion.js')
298+
script(src='/vendor/zepto/zepto.js')
299+
script(src='/vendor/jsonlint/lib/jsonlint.js')
300+
script(src='/vendor/json-sans-eval-min/index.js')
301+
script(src='/vendor/codemirror/lib/codemirror.js')
302+
script(src='/vendor/codemirror/mode/javascript/javascript.js')
303+
script(src='/vendor/codemirror/addon/lint/lint.js')
304+
script(src='/vendor/codemirror/addon/lint/javascript-lint.js')
305+
script(src='/vendor/codemirror/addon/lint/json-lint.js')
306+
script(src='/vendor/jsrsasign/index.js')
307+
script(src='/vendor/jws.js/index.js')
308+
script(src='/js/jwt_mode.js')
309+
script(src='/js/jwt.js')
310+
311+
script(src='/js/isotope.pkgd.min.js')
312+
script(src='/js/flipclock.js')
313+
script(src='/js/accordion.js')
314314
script(src='//js.pusher.com/2.2/pusher.min.js')
315315

316-
script(src='js/app.js')
316+
script(src='/js/app.js')
317317
// endbuild
318318
319319
script.

html/libraries/js.jade

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ article.jwt-js.accordion(data-accordion)
8080
| Kenji Urushima
8181
span.stars(data-repo='kjur/jsjws', style='display: inline;')
8282
i.icon-budicon-466
83-
span
8483
.repository
8584
i.icon-1392070209-icon-social-github
8685
a(href='https://github.com/kjur/jsjws') View Repo

index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

js/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ $('.stars').each(function(idx, element){
669669
var repo = $el.attr('data-repo');
670670

671671
if (repo){
672-
$.getJSON('https://api.github.com/repos/' + repo, function(repoData){
672+
$.getJSON('//api.github.com/repos/' + repo, function(repoData){
673673
var $count = $('<span>');
674674
$count.text(repoData.stargazers_count);
675675

stylus/app.styl

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,18 +149,22 @@ body
149149
+breakpoint("tablet")
150150
display inline-block
151151
width 40px
152+
height 40px
152153
opacity 0
153154
transform(scale(0))
154155
+breakpoint("desktop")
155156
width 60px
157+
height 60px
156158
.logo
157159
width 60px
158160
+breakpoint("tablet")
159161
width 80px
162+
height 25px
160163
transition(.3s ease-in-out)
161164
transform(translateX(-40px))
162165
+breakpoint("desktop")
163166
width 100px
167+
height 32px
164168
transform(translateX(-60px))
165169

166170
nav.menu
@@ -315,7 +319,10 @@ body
315319
border-radius 3px
316320
-webkit-appearance none
317321
-moz-appearance none
322+
appearance none
318323
outline 0
324+
&::-ms-expand
325+
display none
319326
&:after
320327
background url(/img/bg_arrow_select.svg) no-repeat
321328
width 8px
@@ -652,11 +659,13 @@ body
652659
.maintainer
653660
float left
654661
font-size 12px
655-
margin-top 4px
662+
line-height 1.5
656663
i
657664
vertical-align middle
658665
margin-right 2px
659-
font-size 16px
666+
font-size 17px
667+
height 25px
668+
display inline-block
660669
a
661670
color #4A4A4A
662671
text-decoration none
@@ -666,6 +675,8 @@ body
666675
.repository
667676
float right
668677
i
678+
height 24px
679+
display inline-block
669680
font-size 20px
670681
vertical-align middle
671682
margin-right 5px

0 commit comments

Comments
 (0)