Skip to content

Commit

Permalink
Fixing bio
Browse files Browse the repository at this point in the history
  • Loading branch information
Min-Thway-Htut committed Jul 6, 2024
1 parent fc9a4df commit 1d87c89
Show file tree
Hide file tree
Showing 2 changed files with 95 additions and 7 deletions.
3 changes: 0 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ <h1>Hi, I am Min Thway Htut.</h1>
I have experiences in front-end development and have already developed a couple of real-life projects as a freelance developer.
I am currently learning front-end libraries such as BootStrap and React.js while working on my own projects as I believe in project-based learing.
</p>
<br>
<p id="description">Hi</p>
</div>

<h2 id="university">Education</h2>
Expand Down Expand Up @@ -104,7 +102,6 @@ <h2 id="mySkills">Skills</h2>
</ul>
</div>



<section class="contactUs">
<div class="contactMe" id="contact">
Expand Down
99 changes: 95 additions & 4 deletions styles.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
*{
box-sizing: border-box;
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
min-height: 100vh;
Expand Down Expand Up @@ -66,11 +66,95 @@ div.projects:hover{
border: 2px solid #777;
}

div.projects img{
width: 100%;
height: auto;
img{
vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
max-width: 1000px;
position: relative;
margin: auto;
}

/* Hide the images by default */
.mySlides {
display: none;
}

/* Next & previous buttons */
.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
margin-top: -22px;
padding: 16px;
color: white;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
}

/* Position the "next button" to the right */
.next {
right: 0;
border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
color: #f2f2f2;
font-size: 15px;
padding: 8px 12px;
position: absolute;
bottom: 8px;
width: 100%;
text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
color: #f2f2f2;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}

/* The dots/bullets/indicators */
.dot {
cursor: pointer;
height: 15px;
width: 15px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}

.active, .dot:hover {
background-color: #717171;
}

/* Fading animation */
.fade {
animation-name: fade;
animation-duration: 1.5s;
}

@keyframes fade {
from {opacity: .4}
to {opacity: 1}
}
div.desc {
padding: 15px;
text-align: center;
Expand All @@ -84,6 +168,13 @@ div.desc {
width: 30%;
}

.mySlides{
display: none;
}





#description{
text-align:justify;
Expand Down

0 comments on commit 1d87c89

Please sign in to comment.