Skip to content

Commit

Permalink
fix: websh_frontのUIを変更
Browse files Browse the repository at this point in the history
  • Loading branch information
jiro4989 committed Jan 5, 2022
1 parent cd3e17a commit 8ada0f0
Show file tree
Hide file tree
Showing 2 changed files with 260 additions and 152 deletions.
51 changes: 48 additions & 3 deletions websh_front/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,62 @@
<head>
<title>websh</title>

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.8.0/css/bulma.min.css">
<link rel="icon" href="/favicon.ico">
<!--
#204 Karaxと干渉しているため
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
-->
<style>
textarea {
body {
font-family: Consolas, 'Courier New', Courier, Monaco, monospace;
font-size: 14px;
line-height: 1.2;
color: #C9C9C9;
background-color: #202020;
height: 100vh;
}

.main-area {
width: 60vw;
margin-left: auto;
margin-right: auto;
}

.content {
margin-bottom: 10px;
width: 55vw;
}

.text-input {
font-size: 14px;
border: none;
background-color: #202020;
color: #C9C9C9;
caret-color: #C9C9C9;
outline: none;
width: 100%;
resize: none;
}

.command-marker {
vertical-align: top;
}

.ct-info {
font-weight: bold;
color: #efefef;
}

.ct-history {
font-weight: bold;
}

.ct-stdout {
font-style: italic;
}

.ct-stderr {
font-style: italic;
color: #B0231D;
}
</style>

Expand Down
Loading

0 comments on commit 8ada0f0

Please sign in to comment.