Skip to content

Commit

Permalink
Merge pull request wesbos#114 from apopitich/fix-vertical-scrollbar
Browse files Browse the repository at this point in the history
hide vertical scrollbar
  • Loading branch information
wesbos authored Feb 21, 2017
2 parents 86bade4 + 6bc03c7 commit 04bf4d0
Show file tree
Hide file tree
Showing 13 changed files with 29 additions and 0 deletions.
1 change: 1 addition & 0 deletions 02 - JS and CSS Clock/index-FINISHED.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
}

body {
margin: 0;
font-size: 2rem;
display:flex;
flex:1;
Expand Down
1 change: 1 addition & 0 deletions 02 - JS and CSS Clock/index-START.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
}

body {
margin: 0;
font-size: 2rem;
display:flex;
flex:1;
Expand Down
1 change: 1 addition & 0 deletions 11 - Custom Video Player/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ html {
}

body {
margin: 0;
padding: 0;
display:flex;
background:#7A419B;
Expand Down
4 changes: 4 additions & 0 deletions 16 - Mouse Move Shadow/index-finished.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ <h1 contenteditable>🔥WOAH!</h1>
font-family: sans-serif;
}

body {
margin: 0;
}

.hero {
min-height: 100vh;
display:flex;
Expand Down
4 changes: 4 additions & 0 deletions 16 - Mouse Move Shadow/index-start.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ <h1 contenteditable>🔥WOAH!</h1>
font-family: sans-serif;
}

body {
margin: 0;
}

.hero {
min-height: 100vh;
display:flex;
Expand Down
1 change: 1 addition & 0 deletions 17 - Sort Without Articles/index-FINISHED.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

<style>
body {
margin: 0;
font-family: sans-serif;
background: url("https://source.unsplash.com/nDqA4d5NL0k/2000x2000");
background-size: cover;
Expand Down
1 change: 1 addition & 0 deletions 17 - Sort Without Articles/index-START.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

<style>
body {
margin: 0;
font-family: sans-serif;
background: url("https://source.unsplash.com/nDqA4d5NL0k/2000x2000");
background-size: cover;
Expand Down
1 change: 1 addition & 0 deletions 21 - Geolocation/index-FINISHED.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ <h1 class="speed">
font-size: 100px;
}
body {
margin: 0;
font-family: sans-serif;
min-height:100vh;
display:flex;
Expand Down
1 change: 1 addition & 0 deletions 21 - Geolocation/index-START.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ <h1 class="speed">
font-size: 100px;
}
body {
margin: 0;
font-family: sans-serif;
min-height:100vh;
display:flex;
Expand Down
1 change: 1 addition & 0 deletions 23 - Speech Synthesis/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ html {
}

body {
margin: 0;
padding: 0;
font-family: sans-serif;
background-color:#3BC1AC;
Expand Down
6 changes: 6 additions & 0 deletions 26 - Stripe Follow Along Nav/index-FINISHED.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ <h2>Cool</h2>
box-sizing: inherit;
}
body {
margin: 0;
min-height: 100vh;
background:
linear-gradient(45deg, hsla(340, 100%, 55%, 1) 0%, hsla(340, 100%, 55%, 0) 70%),
Expand All @@ -83,6 +84,11 @@ <h2>Cool</h2>
linear-gradient(315deg, hsla(35, 95%, 55%, 1) 100%, hsla(35, 95%, 55%, 0) 70%);
}

h2 {
margin-top: 0;
padding-top: .8em;
}

nav {
position: relative;
perspective: 600px;
Expand Down
6 changes: 6 additions & 0 deletions 26 - Stripe Follow Along Nav/index-START.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ <h2>Cool</h2>
box-sizing: inherit;
}
body {
margin: 0;
min-height: 100vh;
background:
linear-gradient(45deg, hsla(340, 100%, 55%, 1) 0%, hsla(340, 100%, 55%, 0) 70%),
Expand All @@ -83,6 +84,11 @@ <h2>Cool</h2>
linear-gradient(315deg, hsla(35, 95%, 55%, 1) 100%, hsla(35, 95%, 55%, 0) 70%);
}

h2 {
margin-top: 0;
padding-top: .8em;
}

nav {
position: relative;
perspective: 600px;
Expand Down
1 change: 1 addition & 0 deletions 28 - Video Speed Controller/style.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
body {
margin: 0;
display:flex;
justify-content: center;
align-items: center;
Expand Down

0 comments on commit 04bf4d0

Please sign in to comment.