Skip to content

Commit 6bc03c7

Browse files
committed
hide vertical scrollbar
1 parent 86bade4 commit 6bc03c7

File tree

13 files changed

+29
-0
lines changed

13 files changed

+29
-0
lines changed

02 - JS and CSS Clock/index-FINISHED.html

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
}
2727

2828
body {
29+
margin: 0;
2930
font-size: 2rem;
3031
display:flex;
3132
flex:1;

02 - JS and CSS Clock/index-START.html

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
}
2727

2828
body {
29+
margin: 0;
2930
font-size: 2rem;
3031
display:flex;
3132
flex:1;

11 - Custom Video Player/style.css

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ html {
77
}
88

99
body {
10+
margin: 0;
1011
padding: 0;
1112
display:flex;
1213
background:#7A419B;

16 - Mouse Move Shadow/index-finished.html

+4
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ <h1 contenteditable>🔥WOAH!</h1>
1616
font-family: sans-serif;
1717
}
1818

19+
body {
20+
margin: 0;
21+
}
22+
1923
.hero {
2024
min-height: 100vh;
2125
display:flex;

16 - Mouse Move Shadow/index-start.html

+4
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ <h1 contenteditable>🔥WOAH!</h1>
1616
font-family: sans-serif;
1717
}
1818

19+
body {
20+
margin: 0;
21+
}
22+
1923
.hero {
2024
min-height: 100vh;
2125
display:flex;

17 - Sort Without Articles/index-FINISHED.html

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
<style>
1010
body {
11+
margin: 0;
1112
font-family: sans-serif;
1213
background: url("https://source.unsplash.com/nDqA4d5NL0k/2000x2000");
1314
background-size: cover;

17 - Sort Without Articles/index-START.html

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
<style>
1010
body {
11+
margin: 0;
1112
font-family: sans-serif;
1213
background: url("https://source.unsplash.com/nDqA4d5NL0k/2000x2000");
1314
background-size: cover;

21 - Geolocation/index-FINISHED.html

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ <h1 class="speed">
1919
font-size: 100px;
2020
}
2121
body {
22+
margin: 0;
2223
font-family: sans-serif;
2324
min-height:100vh;
2425
display:flex;

21 - Geolocation/index-START.html

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ <h1 class="speed">
1919
font-size: 100px;
2020
}
2121
body {
22+
margin: 0;
2223
font-family: sans-serif;
2324
min-height:100vh;
2425
display:flex;

23 - Speech Synthesis/style.css

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ html {
88
}
99

1010
body {
11+
margin: 0;
1112
padding: 0;
1213
font-family: sans-serif;
1314
background-color:#3BC1AC;

26 - Stripe Follow Along Nav/index-FINISHED.html

+6
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ <h2>Cool</h2>
7575
box-sizing: inherit;
7676
}
7777
body {
78+
margin: 0;
7879
min-height: 100vh;
7980
background:
8081
linear-gradient(45deg, hsla(340, 100%, 55%, 1) 0%, hsla(340, 100%, 55%, 0) 70%),
@@ -83,6 +84,11 @@ <h2>Cool</h2>
8384
linear-gradient(315deg, hsla(35, 95%, 55%, 1) 100%, hsla(35, 95%, 55%, 0) 70%);
8485
}
8586

87+
h2 {
88+
margin-top: 0;
89+
padding-top: .8em;
90+
}
91+
8692
nav {
8793
position: relative;
8894
perspective: 600px;

26 - Stripe Follow Along Nav/index-START.html

+6
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ <h2>Cool</h2>
7575
box-sizing: inherit;
7676
}
7777
body {
78+
margin: 0;
7879
min-height: 100vh;
7980
background:
8081
linear-gradient(45deg, hsla(340, 100%, 55%, 1) 0%, hsla(340, 100%, 55%, 0) 70%),
@@ -83,6 +84,11 @@ <h2>Cool</h2>
8384
linear-gradient(315deg, hsla(35, 95%, 55%, 1) 100%, hsla(35, 95%, 55%, 0) 70%);
8485
}
8586

87+
h2 {
88+
margin-top: 0;
89+
padding-top: .8em;
90+
}
91+
8692
nav {
8793
position: relative;
8894
perspective: 600px;

28 - Video Speed Controller/style.css

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
body {
2+
margin: 0;
23
display:flex;
34
justify-content: center;
45
align-items: center;

0 commit comments

Comments
 (0)