Cleanup Code (#131) · IBM/ibm.github.io@3130b80 · GitHub | Latest TMZ Celebrity News & Gossip | Watch TMZ Live
Skip to content
This repository was archived by the owner on Nov 4, 2020. It is now read-only.

Commit 3130b80

Browse files
Nitairstevemart
authored andcommitted
Cleanup Code (#131)
* Removed 4 not used </div>, fixed favicon URL (doesn't exist anymore), some code format changes * Move repo handling to .js file (way better overview in index.html), changed for loop (better effiency in performance) ~More updates to go * Part 2 of changes, fixes missing semicolons, moving adding hash for all repos into repo js because its only related to that, killed whitespaces, fixes format for comments ~More updates inc. * Killing whitespaces * Fix placement of search and analytics * Ignore file if using Visual Studio Code * column-break-inside doesn't exist, font-color doesn't exist, fix other CSS elements because they don't take effect anyway. performed overall some cleanup * Fix new line
1 parent 0356505 commit 3130b80

File tree

5 files changed

+415
-476
lines changed

5 files changed

+415
-476
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
_site
22
.DS_Store
3+
.vs

css/bootstrap.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1713,7 +1713,7 @@ input[type="number"]::-webkit-inner-spin-button {
17131713
font-size: 14px;
17141714
line-height: 1.428571429;
17151715
color: #555555;
1716-
vertical-align: middle;
1716+
/* vertical-align: middle; */
17171717
background-color: #ffffff;
17181718
border: 1px solid #cccccc;
17191719
border-radius: 4px;
@@ -1752,13 +1752,13 @@ textarea.form-control {
17521752
padding-left: 20px;
17531753
margin-top: 10px;
17541754
margin-bottom: 10px;
1755-
vertical-align: middle;
1755+
/* vertical-align: middle; */
17561756
}
17571757

17581758
.radio label,
17591759
.checkbox label {
17601760
display: inline;
1761-
margin-bottom: 0;
1761+
/* margin-bottom: 0; */
17621762
font-weight: normal;
17631763
cursor: pointer;
17641764
}

css/style.css

Lines changed: 3 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,11 @@ body {
99
src: url('/fonts/Lubalin/LubalinGraphStd-Book.otf') format('opentype');
1010
}
1111

12-
1312
@font-face {
1413
font-family: 'Lubalin-Md';
1514
src: url('/fonts/Lubalin/LubalinGraphStd-Medium.otf') format('opentype');
1615
}
1716

18-
1917
@font-face {
2018
font-family: 'Helvetica-Neue-Hv';
2119
src: url('/fonts/helvneue/HelveticaNeueLTStd-Hv.otf') format('opentype');
@@ -35,14 +33,15 @@ body {
3533
padding: 0;
3634
margin: 0;
3735
list-style: none;
38-
3936
display: -webkit-box;
4037
display: -moz-box;
4138
display: -ms-flexbox;
4239
display: -webkit-flex;
4340
display: flex;
44-
41+
-moz-flex-flow: row wrap;
4542
-webkit-flex-flow: row wrap;
43+
-ms-flex-flow: row wrap;
44+
flex-flow: row wrap;
4645
justify-content: space-between;
4746
}
4847

@@ -160,7 +159,6 @@ body {
160159
top: 0;
161160
color: #aaa;
162161
height: 30px;
163-
/*background: transparent url(../images/arrow-up.png) no-repeat 0 0;*/
164162
}
165163

166164
.collapse + a.twistie.showdetails:before {
@@ -169,7 +167,6 @@ body {
169167
position: absolute;
170168
top: 0;
171169
color: #aaa;
172-
/*background: transparent url(../images/arrow-dwn.png) no-repeat 0 0;*/
173170
width: 70px;
174171
height: 30px;
175172
}
@@ -220,9 +217,7 @@ body {
220217
.news .newsEntry {
221218
font-family: Verdana, Arial, Helvetica, sans-serif;
222219
font-size: 100%;
223-
font-color: #fff;
224220
color: #fff;
225-
font-color: #fff;
226221
}
227222

228223
div.newsImage {
@@ -242,9 +237,7 @@ div.news {
242237
margin-left: 10px;
243238
background-color: #111;
244239
border: 1px solid #3399FF;
245-
/* for IE */
246240
filter: alpha(opacity=70);
247-
/* CSS3 standard */
248241
opacity: 0.7;
249242
}
250243

@@ -277,14 +270,12 @@ div.news {
277270
}
278271

279272
#wrapper .updated-card {
280-
/*background: #fff url(../images/updated.png) no-repeat 102% 0px;*/
281273
background-color: #fff;
282274
height: 160px;
283275
display: inline-block;
284276
margin: 5px 2px 5px 5px;
285277
padding: 0px 2px 0px 0px;
286278
text-overflow: ellipsis;
287-
288279
}
289280

290281
#wrapper .updated-card .card {
@@ -300,7 +291,6 @@ div.news {
300291

301292
#wrapper .card {
302293
margin: 5px;
303-
/* border-top: 4px solid #ccc; */
304294
height: 160px;
305295
text-overflow: ellipsis;
306296
overflow: hidden;
@@ -326,18 +316,6 @@ div.news {
326316
padding-bottom: 0px;
327317
}
328318

329-
#wrapper .java {
330-
/* border-top: 4px solid #510FAD; */
331-
}
332-
333-
#wrapper .ruby {
334-
/* border-top: 4px solid #33CCCC; */
335-
}
336-
337-
#wrapper .javascript {
338-
/* border-top: 4px solid #FFBE40; */
339-
}
340-
341319
.section-title {
342320
background-color: #333;
343321
text-transform: uppercase;
@@ -349,7 +327,6 @@ label.search span {
349327
text-transform: uppercase;
350328
float: left;
351329
padding-top: 15px;
352-
/* padding-right: 1px; */
353330
font-weight: 700;
354331
padding-right: .5em;
355332
}
@@ -465,7 +442,6 @@ label.search span {
465442
font-size: 0.75em;
466443
font-family: Arial, Helvetica, sans-serif;
467444
overflow: hidden;
468-
width: 40px;
469445
text-overflow: ellipsis;
470446
white-space: nowrap;
471447
}
@@ -485,7 +461,6 @@ label.search span {
485461
line-height: 38px;
486462
height: 38px;
487463
display: inline-block;
488-
float: left;
489464
vertical-align: middle;
490465
color: #E1DFDA;
491466
padding: 5px 14px;
@@ -516,7 +491,6 @@ label.search span {
516491
margin: 0 2px 15px;
517492
-webkit-column-break-inside: avoid;
518493
-moz-column-break-inside: avoid;
519-
column-break-inside: avoid;
520494
padding: 15px;
521495
padding-bottom: 5px;
522496
background: -webkit-linear-gradient(45deg, #FFF, #F9F9F9);

0 commit comments

Comments
 (0)

TMZ Celebrity News – Breaking Stories, Videos & Gossip

Looking for the latest TMZ celebrity news? You've come to the right place. From shocking Hollywood scandals to exclusive videos, TMZ delivers it all in real time.

Whether it’s a red carpet slip-up, a viral paparazzi moment, or a legal drama involving your favorite stars, TMZ news is always first to break the story. Stay in the loop with daily updates, insider tips, and jaw-dropping photos.

🎥 Watch TMZ Live

TMZ Live brings you daily celebrity news and interviews straight from the TMZ newsroom. Don’t miss a beat—watch now and see what’s trending in Hollywood.