Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

align the heading in center and do some changes in footer section #262

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 26 additions & 7 deletions dashboard.css
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,15 @@ main {
color: #72D34F;
cursor: default;
animation: fadeIn 1s ease-in-out;
text-align:left;
margin-right: 18rem;
}

.grid {
display: grid;
grid-template-columns: repeat(8, 1fr);
grid-gap: 2rem;
padding : 4rem;
padding : 6rem;
}

.grid:nth-of-type(2) {
Expand Down Expand Up @@ -134,9 +136,22 @@ main {
height: 40vh;
}

#book{
margin-left: 12rem;
}
#org{
margin-left: 6rem;
}
#art{
margin-left: 11rem;
}
#conf{
margin-left:-4rem;
}

.grid2 {
display: grid;
grid-gap: 2rem;
grid-gap: 4rem;
padding: 4rem;
align-items: center;
grid-template-columns: repeat(4, 1fr);
Expand All @@ -153,8 +168,8 @@ main {
transition: ease 0.4s;
outline: 3px solid #72D34F;
box-shadow: rgba(0, 0, 0, 0.3);
width: calc(20vh / 4 + 50vw / 4);
height: calc(20vh / 3 + 50vw / 3);
width: calc(40vh / 4 + 50vw / 4);
height: calc(40vh / 3 + 50vw / 3);
border: 2px solid rgba(255, 255, 255, 0.3);
background-color: rgba(255, 255, 255, 0.2);
}
Expand Down Expand Up @@ -217,6 +232,7 @@ nav li a:hover{
.about-section p {
margin-top: 10px;
font-weight: 500;
width:300px;
}

.foot-names {
Expand All @@ -235,8 +251,8 @@ nav li a:hover{
}

.foot-names img {
width: 200px; /* Set the desired width */
height: 200px; /* Set the desired height */
width: 250px; /* Set the desired width */
height: 300px; /* Set the desired height */
object-fit: cover;

border-radius: 10px; /* Add border-radius for a consistent look */
Expand All @@ -257,7 +273,10 @@ nav li a:hover{


h1 {
transform: translateX(60%);
transform: translateX(55%);
}
#about{
transform: translateX(23%);
}

#scrollup{
Expand Down
4 changes: 2 additions & 2 deletions dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ <h1 id="conf" class="heading">Talks and Conferences</h1>

<div class="col2">
<div data-aos="fade-left" data-aos-duration="1000" class="about-section">
<h1>About Us</h1>
<h1 id="about">About Us</h1>
<p>
Hi there! Welcome to our platform dedicated to mental fitness. We provide various links and resources
to help you embark on your journey to mental well-being.
Expand All @@ -114,7 +114,7 @@ <h1>About Us</h1>
</div>

<div class="developer-section">
<h1>Developers</h1>
<h1 class="dev">Developers</h1>
<ul class="foot-names">
<li>
<a target="_blank" href="https://github.com/bhaskar1001101">
Expand Down