Skip to content

Commit 5d97789

Browse files
committed
remove: roadmap section. it's useless
1 parent 3227526 commit 5d97789

File tree

2 files changed

+3
-109
lines changed

2 files changed

+3
-109
lines changed

index.html

-19
Original file line numberDiff line numberDiff line change
@@ -124,25 +124,6 @@ <h3>Tomo / Modosu</h3>
124124
</div>
125125
</div>
126126
</div>
127-
<div class="roadMap">
128-
<div class="roadmap-wrapper">
129-
<h1><span class="img"><img onload="this.style.opacity=1" src="./assets/motorway.svg" alt="roadmap icon"></span> Roadmap</h1>
130-
<div class="active">
131-
<h4>Active</h4>
132-
<div class="task">
133-
<h4>Youtube</h4>
134-
<p>Get consistent at both (tomo & modosu) channels</p>
135-
</div>
136-
<div class="task">
137-
<h4>Project Subnox</h4>
138-
<p>Make a web-based subtitle editor</p>
139-
</div>
140-
</div>
141-
<div class="planned">
142-
<h4>Planned</h4>
143-
</div>
144-
</div>
145-
</div>
146127
</div>
147128
</body>
148129

main.css

+3-90
Original file line numberDiff line numberDiff line change
@@ -45,16 +45,10 @@ h6 {
4545

4646
/* Wrapper */
4747
.wrapper {
48+
display: grid;
49+
place-content: center;
4850
min-height: 100vh;
4951
width: 100vw;
50-
display: grid;
51-
grid-template-columns: 60% 40%;
52-
}
53-
54-
@media screen and (max-width: 1024px) {
55-
.wrapper {
56-
grid-template-columns: none;
57-
}
5852
}
5953

6054

@@ -204,89 +198,8 @@ h6 {
204198
transform: translateY(70%);
205199
}
206200

207-
.bio p,
201+
.bio p,
208202
.profile h3 {
209203
font-size: 14px;
210204
}
211-
}
212-
213-
214-
215-
216-
/* roadmap */
217-
.roadMap {
218-
display: flex;
219-
flex-direction: row;
220-
border-left: 1px solid hsla(0, 0%, 100%, 0.2);
221-
min-height: 100vh;
222-
padding: 40px;
223-
color: hsl(0, 0%, 100%, 0.8);
224-
}
225-
226-
.roadmap-wrapper {
227-
width: 100%;
228-
}
229-
230-
.roadMap .img {
231-
border-radius: 6px;
232-
overflow: hidden;
233-
width: 2rem;
234-
height: 2rem;
235-
background-color: hsla(0, 0%, 100%, 0.07);
236-
}
237-
.roadMap .img img {
238-
transition: opacity 0.1s ease-in;
239-
opacity: 0;
240-
width: 100%;
241-
height: 100%;
242-
}
243-
244-
.roadMap h1 {
245-
display: flex;
246-
align-items: center;
247-
gap: 7px;
248-
width: 100%;
249-
margin-bottom: 16px;
250-
padding-bottom: 6px;
251-
}
252-
253-
.roadmap-wrapper .active, .roadmap-wrapper .planned {
254-
display: flex;
255-
flex-direction: column;
256-
gap: 10px;
257-
}
258-
259-
.roadMap .planned {
260-
margin-top: 50px;
261-
}
262-
263-
.roadMap .task {
264-
position: relative;
265-
background-color: rgba(255, 255, 255, 0.05);
266-
border-radius: 6px;
267-
padding: 20px 15px;
268-
width: 100%;
269-
border: 1px solid hsla(0, 0%, 100%, 0.1);
270-
}
271-
272-
.roadMap .task h4 {
273-
margin-bottom: 7px;
274-
}
275-
.roadMap .task p {
276-
font-size: 1rem;
277-
color: hsl(0, 0%, 70%);
278-
font-weight: 300;
279-
}
280-
281-
@media screen and (max-width: 1024px) {
282-
.roadMap {
283-
border-left: none;
284-
border-top: 1px solid hsla(0, 0%, 100%, 0.2);
285-
padding-top: 25px;
286-
margin-top: 10px;
287-
}
288-
289-
.roadMap h1 {
290-
font-size: 1.8rem;
291-
}
292205
}

0 commit comments

Comments
 (0)