Skip to content

Commit

Permalink
Merge pull request #2 from Ibrangrd/Font_Size
Browse files Browse the repository at this point in the history
Fix the font size
  • Loading branch information
shaina123786 authored Oct 5, 2024
2 parents 38f4a76 + e2d58ee commit d3fc9e2
Show file tree
Hide file tree
Showing 6 changed files with 288 additions and 269 deletions.
152 changes: 87 additions & 65 deletions about.css
Original file line number Diff line number Diff line change
@@ -1,84 +1,97 @@
*{
* {
margin: 0;
padding: 0;
/* box-sizing: border-box; */

}
body{
/* background-image: linear-gradient(to right, rgba(255,0,0,0), rgba(255,0,0,1)); */
background: linear-gradient(#fcd0e0,#b0eaf5,#b0e3de);

font-family: 'poppins',sans-serif;
body {
/* background-image: linear-gradient(to right, rgba(255,0,0,0), rgba(255,0,0,1)); */
background: linear-gradient(#fcd0e0, #b0eaf5, #b0e3de);

font-family: 'poppins', sans-serif;
scroll-behavior: smooth;

}


nav{

nav {
display: flex;
justify-content: space-around;
align-items: center;
height: 80px;
height: 60px;
background-color: rgb(209, 166, 195);
overflow: hidden;
}
nav ul{


nav ul {
display: flex;
justify-content: space-between;
}

nav ul li {
list-style: none;
margin: 0 48px;
}
ul li a{
padding-left: 10px;
padding-right: 10px;

.right a {
width: 70px;

}

ul li a {
padding: 10px;
text-decoration: none;
color:purple;
font-size: 1.4rem;
color: purple;
font-size: 18px;
font-weight: 700;
transition: all 1s ease;
transition-duration: 0.5s;
}
ul li a:hover{
color: rgb(97, 15, 237);
font-size: 1.5rem;
border-radius: 2px;
border-style: double;

ul li a:hover {
color: rgb(97, 15, 237);
font-size: 20px;
border-radius: 10px;
background-color: #880854;
}
.right a{
width: 90px;

.left {
font-size: 22px;
}
.left{
font:2rem sans-serif;
}
span{

span {
position: relative;
color: rgb(165, 36, 165);

}
.about{

.about {
text-align: center;
margin-top: 60px;
}
.name{
font-size: 30px;

.name {
font-size: 25px;
font-weight: 3px;
color:rgb(5, 150, 190);
color: rgb(5, 150, 190);
}
.about h1{

.about h1 {
color: rgb(231, 98, 107);
font-size: 3rem;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 40px;
letter-spacing:8px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.about p{
font-size: 30px;
margin-left:380px;

.about p {
font-size: 22px;
margin-left: 380px;
margin-right: 380px;
color: rgb(182, 14, 93);
font-style:var();
font-style: var();
}

.container {
display: flex;
justify-content: space-evenly;
Expand All @@ -99,65 +112,74 @@ span{
justify-content: space-evenly;
}

.education{
.education {
margin-top: 180px;
font-size: 40px;
margin-left: -30px;
color: #d49f4a;
}
.info h5{
font-size: 25px;
color: #a53860;
margin-bottom: 25px;

.info h5 {
font-size: 25px;
color: #a53860;
margin-bottom: 25px;
}
.info .add{
color: #eb5e28;
font-size: 30px;

.info .add {
color: #eb5e28;
font-size: 20px;

}
.sub h5{
margin-bottom: 15px;
font-size: 25px;

.sub h5 {
margin-bottom: 15px;
font-size: 20px;

}
.sub .add{

.sub .add {
margin-bottom: 14px;

}
.matric{
font-size: 25px;

.matric {
font-size: 22px;
}
.inter{
font-size: 25px;

.inter {
font-size: 22px;
}
p{

p {
font-weight: 600;
}

.ten{
.ten {
margin-top: 100px;
color: #ef233c;
font-size: 25px;
}
.twelve{
margin-top: 100px;

.twelve {
margin-top: 100px;
color: #3a0ca3;
font-size: 25px;
font-size: 22px;
}
.btech{

.btech {
margin-bottom: 20px;
margin-top: 15px;
color: #003566;
font-size: 25px;
font-size: 22px;

}

footer{
footer {
text-align: center;
margin-bottom: 30px;
margin-top: 110px;
margin-bottom: 10px;
margin-top: 50px;
color: maroon;
font-size: 2rem;
font-size: 18px;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

}
}
2 changes: 1 addition & 1 deletion about.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<li><a href="contact.html">CONTACT</a></li>
</ul>
</div>
</nav>
</nav>
</header>
</body>
<div class="about">
Expand Down
Loading

0 comments on commit d3fc9e2

Please sign in to comment.