Skip to content

Commit 4d9d692

Browse files
committed
completed corrections
1- Remove the vs code file while making PR 2- Rename as Timeline_onScroll_Animation_01
1 parent 4759fb7 commit 4d9d692

File tree

9 files changed

+19
-6
lines changed

9 files changed

+19
-6
lines changed

Timelines/Timeline_onScroll_Animation/.vscode/settings.json

-2
This file was deleted.

Timelines/Timeline_onScroll_Animation/index.html Timelines/Timeline_onScroll_Animation_1/index.html

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<title>Timeline</title>
99
</head>
1010
<body>
11+
<header></header>
1112
<div class="container">
1213
<div class="child-container">
1314
<div class="message">
@@ -78,6 +79,7 @@ <h1>EXERCISE</h1>
7879
<div class="date">10-07-2010</div>
7980
</div>
8081
</div>
82+
<footer></footer>
8183
<script src="./app.js"></script>
8284
</body>
8385
</html>

Timelines/Timeline_onScroll_Animation/style.css Timelines/Timeline_onScroll_Animation_1/style.css

+17-4
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400&display=swap');
33

44
*,
5-
*::after*::before {
6-
margin: 0px;
7-
padding: 0px;
5+
*::after,
6+
*::before {
7+
margin: 0;
8+
padding: 0;
89
box-sizing: border-box;
910
}
1011

@@ -15,7 +16,6 @@ body {
1516
display: flex;
1617
justify-content: center;
1718
align-items: center;
18-
padding-top: 2em;
1919
flex-direction: column;
2020
background: var(--primary-color);
2121
}
@@ -38,6 +38,19 @@ body {
3838
--green-light: #aff1b6;
3939
}
4040

41+
header {
42+
height: 100vh;
43+
width: 100%;
44+
background: var(--blue-light);
45+
margin-bottom: 2em;
46+
}
47+
footer {
48+
height: 100vh;
49+
width: 100%;
50+
background: var(--blue-light);
51+
margin-top: 2em;
52+
}
53+
4154
h1 {
4255
font-family: var(--ff-sp);
4356
font-size: 1em;

0 commit comments

Comments
 (0)