Skip to content

Commit

Permalink
Merge pull request #57 from Hustler004/main
Browse files Browse the repository at this point in the history
Issue resolved, theme problem on time-complexity-analyzer page #18
  • Loading branch information
multiverseweb authored Oct 4, 2024
2 parents 7db05d6 + bdc884e commit 1138214
Show file tree
Hide file tree
Showing 8 changed files with 245 additions and 203 deletions.
8 changes: 6 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,13 @@
<button class="top" id="top" onclick="topFunction()">
<img src="images/top.png" alt="" />
</button>
<button type="button" id="theme" onclick="dark()">
<img src="images/moon.png" class="moon" id="themeLogo" />
<button type="button" class="theme" id="darkThemeBtn" style="display: none;">
<img src="./images/moon.png" class="themeLogo" />
</button>
<button type="button" class="theme" id="lightThemeBtn">
<img src="./images/sun.png" class="themeLogo" />
</button>

<div class="top-elements">
<a href="index.html" class="top-link"><img src="images/Nomenclature.png" alt="logo" class="logo" id="logo" />
<p class="codeit">CodeIt</p>
Expand Down
10 changes: 7 additions & 3 deletions pages/infinity.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,13 @@
/>
</head>


<body id="body">
<button type="button" id="theme" onclick="dark()"><img src="../images/moon.png" class="moon" id="themeLogo"></button>
<body id="body">
<button type="button" class="theme" id="darkThemeBtn" style="display: none">
<img src="../images/moon.png" class="themeLogo" />
</button>
<button type="button" class="theme" id="lightThemeBtn">
<img src="../images/sun.png" class="themeLogo" />
</button>

<div class="top-elements">
<a href="../index.html" class="top-link"
Expand Down
10 changes: 7 additions & 3 deletions pages/obfuscation.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,13 @@
/>
</head>


<body id="body">
<button type="button" id="theme" onclick="dark()"><img src="../images/moon.png" class="moon" id="themeLogo"></button>
<body id="body">
<button type="button" class="theme" id="darkThemeBtn" style="display: none">
<img src="../images/moon.png" class="themeLogo" />
</button>
<button type="button" class="theme" id="lightThemeBtn">
<img src="../images/sun.png" class="themeLogo" />
</button>

<div class="top-elements">
<a href="../index.html" class="top-link"
Expand Down
13 changes: 8 additions & 5 deletions pages/refine.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,13 @@
/>
</head>


<body id="body">
<button type="button" id="theme" onclick="dark()"><img src="../images/moon.png" class="moon" id="themeLogo"></button>
<body id="body">
<button type="button" class="theme" id="darkThemeBtn" style="display: none">
<img src="../images/moon.png" class="themeLogo" />
</button>
<button type="button" class="theme" id="lightThemeBtn">
<img src="../images/sun.png" class="themeLogo" />
</button>

<div class="top-elements">
<a href="../index.html" class="top-link"
Expand Down Expand Up @@ -141,8 +145,7 @@
<span class="checkmark" id="checkmark"></span>
</label>
</div>
<button type="button" id="theme" onclick="light()">
<img src="../images/moon.png" class="moon" id="themeLogo" />

</button>
<div class="container">
<button type="button" id="submit" onclick="fileNameFunction()">
Expand Down
10 changes: 7 additions & 3 deletions pages/timeComplexity.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,13 @@
/>
</head>


<body id="body">
<button type="button" id="theme" onclick="dark()"><img src="../images/moon.png" class="moon" id="themeLogo"></button>
<body id="body">
<button type="button" class="theme" id="darkThemeBtn" style="display: none">
<img src="../images/moon.png" class="themeLogo" />
</button>
<button type="button" class="theme" id="lightThemeBtn">
<img src="../images/sun.png" class="themeLogo" />
</button>

<div class="top-elements">
<a href="../index.html" class="top-link"
Expand Down
Loading

0 comments on commit 1138214

Please sign in to comment.