1
1
Fork 0

Re-add titlebar to memories, stylize buttons and change arrows

This commit is contained in:
Sophie Marie 2023-11-02 16:20:35 -05:00
parent 4342bba49b
commit 2895c0b015
Signed by: IDeletedSystem64
GPG Key ID: 33A12B0480AFC8E9
3 changed files with 16 additions and 4 deletions

View File

@ -22,8 +22,9 @@
<div class="window">
<div class="wrapper">
<div class="memoriesBox" id="memoriesBox"></div>
<button id="prev">&lt;</button>
<button id="next">&gt;</button>
<div class="window_titlebar"><h3>memories.exe</h3></div>
<button id="prev"></button>
<button id="next"></button>
<script src="/js/memories.js" type="module"></script>
</div>
</div>

View File

@ -3,6 +3,17 @@
/* Buttons */
button {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background: #c3c3c3;
box-shadow: inset -1px -1px black;
min-height: 30px;
min-width: 30px;
}
input {
-webkit-appearance: none;
appearance: none;

View File

@ -57,12 +57,12 @@ div.window {
position: relative;
border-style: ridge;
border-width: 5px;
border-color: #c3c3c3;
border-color: #e9e9e9;
width: 60vw;
padding: 10px;
align-self: center;
background-color: white;
background-color: #e9e9e9;
}