Skip to content
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
12 changes: 6 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ <h1>🤝 PromiViz</h1>
<div class="log-settings">
<a class="item" href="#">Set a Theme</a>
<ui class="log-theme">
<li title="Set the blue theme" class="blue" onclick="setTheme('blue')"></li>
<li title="Set the red theme" class="red" onclick="setTheme('red')"></li>
<li title="Set the purple theme" class="purple" onclick="setTheme('purple')"></li>
<li title="Set the green theme" class="green" onclick="setTheme('green')"></li>
<li title="Set the black theme" class="black" onclick="setTheme('black')"></li>
<li title="Set the blue theme" class="color blue" onclick="setTheme('blue')"></li>
<li title="Set the red theme" class="color red" onclick="setTheme('red')"></li>
<li title="Set the purple theme" class="color purple" onclick="setTheme('purple')"></li>
<li title="Set the green theme" class="color green" onclick="setTheme('green')"></li>
<li title="Set the black theme" class="color black" onclick="setTheme('black')"></li>
</ui>
</div>
<hr />
Expand Down Expand Up @@ -218,4 +218,4 @@ <h2>Logs</h2>

<script src="./app.js"></script>
</body>
</html>
</html>
5 changes: 5 additions & 0 deletions main.css
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,10 @@ header h1 {
background-color: #f94747;
}

li.color:hover {
width: 12px;
}

::selection {
background: #ff6600;
text-shadow: none;
Expand Down Expand Up @@ -334,6 +338,7 @@ footer {

.sidenav a.item input {
margin-top: 8px;
margin-left: 30px;
}

.sidenav a:hover {
Expand Down