Re-add titlebar to memories, stylize buttons and change arrows
This commit is contained in:
parent
4342bba49b
commit
2895c0b015
|
@ -22,8 +22,9 @@
|
||||||
<div class="window">
|
<div class="window">
|
||||||
<div class="wrapper">
|
<div class="wrapper">
|
||||||
<div class="memoriesBox" id="memoriesBox"></div>
|
<div class="memoriesBox" id="memoriesBox"></div>
|
||||||
<button id="prev"><</button>
|
<div class="window_titlebar"><h3>memories.exe</h3></div>
|
||||||
<button id="next">></button>
|
<button id="prev">◄</button>
|
||||||
|
<button id="next">►</button>
|
||||||
<script src="/js/memories.js" type="module"></script>
|
<script src="/js/memories.js" type="module"></script>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -3,6 +3,17 @@
|
||||||
|
|
||||||
/* Buttons */
|
/* 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 {
|
input {
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
appearance: none;
|
appearance: none;
|
||||||
|
|
|
@ -57,12 +57,12 @@ div.window {
|
||||||
position: relative;
|
position: relative;
|
||||||
border-style: ridge;
|
border-style: ridge;
|
||||||
border-width: 5px;
|
border-width: 5px;
|
||||||
border-color: #c3c3c3;
|
border-color: #e9e9e9;
|
||||||
|
|
||||||
width: 60vw;
|
width: 60vw;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
align-self: center;
|
align-self: center;
|
||||||
background-color: white;
|
background-color: #e9e9e9;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Reference in New Issue