Skip to content

Commit

Permalink
Merge pull request #41 from traP-jp/webpage
Browse files Browse the repository at this point in the history
細かい変更とスクロールボックスの追加。
  • Loading branch information
pasmophobia authored Jun 15, 2024
2 parents 1b99bcd + dec96fe commit 1d7bd10
Showing 1 changed file with 23 additions and 3 deletions.
26 changes: 23 additions & 3 deletions h24s_25/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,18 @@ function load() {
<div class="title left">
<h1>welcome</h1>
</div>
<div class="gamespace" id="screen">
<div class="gamespace left"> <!-- class="gamespace left" とすればコントロールパネルがいい感じの位置に動くよ。-->
<div id="screen">
</div>
</div>
<div class="control-panel left">
<div class="log-container">
<p class="log-titile">Log id:value</p>
<div class="log-box">
<p>あるあるですわな</p>
<p>かきくけこ</p>
</div>
</div>
<div class="slider-container">
<p>スライダ1</p>
<input class="slider" type="range" id="slider1" min="0" max="100" step="5">
Expand Down Expand Up @@ -81,11 +90,21 @@ h1 {
.control-panel {
width: 30%;
height: auto;
height: 80vh;
margin: 20px;
border: 2px solid #000;
}
.log-box {
padding: 3%;
overflow: visible;
overflow: scroll;
margin: 2%;
width: auto;
height: 10vh;
border: 2px solid #000;
}
.slider-container {
padding: 3%;
}
Expand All @@ -95,7 +114,8 @@ h1 {
}
button {
padding: 6% 10%;
width: 30%;
padding: 6% 0%;
margin: 5%;
}
Expand Down

0 comments on commit 1d7bd10

Please sign in to comment.