Skip to content

Commit

Permalink
Merge pull request #746 from Shobhit1729Aryan/main
Browse files Browse the repository at this point in the history
updated the UI/UX page and aligned the corse cards in dark mode
  • Loading branch information
PriyaGhosal authored Oct 20, 2024
2 parents b1c439d + fcc4af4 commit 39423a1
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 15 deletions.
2 changes: 1 addition & 1 deletion assets/css/darkmode.css
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ body.nav-active {
}

.title-lg {
font-size: var(--title-lg);
font-size: 20px;
line-height: 1.4;
}

Expand Down
60 changes: 46 additions & 14 deletions uiux.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,59 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>UI/UX Design Courses</title>
<link rel="stylesheet" href="assets/css/uiux.css">
<link rel="stylesheet" href="assets/css/style.css">


</head>
<style>

.span {
color: var(--light-coral); /* Use your existing color variable */
display: inline;
position: relative; /* Required for positioning the pseudo-element */
}
header {
border: none; /* Remove any borders */
margin: 0; /* Reset margin */
padding: 0; /* Reset padding */
}

h1 {
margin: 0; /* Remove margin around h1 */
padding: 0; /* Remove padding around h1 */
border: none; /* Remove any borders */
text-decoration: none; /* Remove underline if applied */
}

/* Additional reset for the section, if needed */
.section {
border: none; /* Ensure no borders */
}

</style>
<body>
<header>
<h1>UI/UX Design Courses</h1>
<header style="margin-bottom: 20px;">
<h1>UI/UX Design <span class="span has-after">Courses</span></h1>
</header>

<ul class="course-list">
<div class="header1">
<li class="card category-card">

<div class="card-icon">
<img src="./assets/images/img1.jpg" width="72" height="72" alt="Course 1 icon">
</div>

<div>
<h3 class="title-lg">Intro to UI/UX Design</h3>
<p class="title-sm">Beginner-friendly introduction to the basics of UI/UX.</p>
<a href="#" class="buy-now-btn">Buy Now</a>
</div>
<a href="#" class="layer-link" aria-label="Intro to UI/UX Design"></a>
</li>

</li></div>
<div class="header2">
<li class="card category-card">

<div class="card-icon">
<img src="./assets/images/img2.jpg" width="72" height="72" alt="Course 2 icon">
</div>
Expand All @@ -36,8 +68,8 @@ <h3 class="title-lg">Advanced Prototyping Techniques</h3>
<a href="#" class="buy-now-btn">Buy Now</a>
</div>
<a href="#" class="layer-link" aria-label="Advanced Prototyping Techniques"></a>
</li>

</li></div>
<div class="header1">
<li class="card category-card">
<div class="card-icon">
<img src="./assets/images/img3.jpg" width="72" height="72" alt="Course 3 icon">
Expand All @@ -48,8 +80,8 @@ <h3 class="title-lg">User Research Fundamentals</h3>
<a href="#" class="buy-now-btn">Buy Now</a>
</div>
<a href="#" class="layer-link" aria-label="User Research Fundamentals"></a>
</li>

</li></div>
<div class="header2">
<li class="card category-card">
<div class="card-icon">
<img src="./assets/images/img4.jpg" width="72" height="72" alt="Course 4 icon">
Expand All @@ -60,8 +92,8 @@ <h3 class="title-lg">Design Systems & Guidelines</h3>
<a href="#" class="buy-now-btn">Buy Now</a>
</div>
<a href="#" class="layer-link" aria-label="Design Systems & Guidelines"></a>
</li>

</li></div>
<div class="header1">
<li class="card category-card">
<div class="card-icon">
<img src="./assets/images/img5.jpg" width="72" height="72" alt="Course 5 icon">
Expand All @@ -72,8 +104,8 @@ <h3 class="title-lg">UX for Mobile Devices</h3>
<a href="#" class="buy-now-btn">Buy Now</a>
</div>
<a href="#" class="layer-link" aria-label="UX for Mobile Devices"></a>
</li>

</li></div>
<div class="header2">
<li class="card category-card">
<div class="card-icon">
<img src="./assets/images/img6.jpg" width="72" height="72" alt="Course 6 icon">
Expand All @@ -84,7 +116,7 @@ <h3 class="title-lg">Web Accessibility in UI/UX</h3>
<a href="#" class="buy-now-btn">Buy Now</a>
</div>
<a href="#" class="layer-link" aria-label="Web Accessibility in UI/UX"></a>
</li>
</li></div>
</ul>

</body>
Expand Down

0 comments on commit 39423a1

Please sign in to comment.