-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Zixi An
committed
Apr 26, 2024
1 parent
dc6da79
commit b950ed0
Showing
1 changed file
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
body, | ||
html { | ||
height: 100%; | ||
margin: 0; | ||
font-size: 11pt; | ||
font-family: monospace; | ||
line-height: 1.5; | ||
tab-size: 2; | ||
} | ||
|
||
#compile-button { | ||
float: right; | ||
} | ||
|
||
.container { | ||
display: grid; | ||
grid-template-columns: 1fr 1fr; | ||
gap: 10px; | ||
padding: 10px; | ||
width: 95vw; | ||
height: 90%; | ||
} | ||
|
||
.code-container { | ||
border: 1px solid #ddd; | ||
background: #f5f2f0; | ||
min-height: 30vh; | ||
} | ||
|
||
.title-bar { | ||
background: #eee; | ||
border-bottom: 1px solid #ddd; | ||
padding: 5px 10px; | ||
font-weight: bold; | ||
} | ||
|
||
.page-title { | ||
padding: 20px; | ||
text-align: center; | ||
font-size: 25pt; | ||
font: bold; | ||
} | ||
|
||
.page-description { | ||
padding: 20px; | ||
text-align: center; | ||
font-size: 11pt; | ||
margin-left: auto; | ||
margin-right: auto; | ||
} | ||
|
||
.output-area, | ||
#edit-container { | ||
background: #f5f2f0; | ||
border: none; | ||
padding: 5px; | ||
overflow: auto; | ||
resize: none; | ||
width: 100%; | ||
height: calc(100% - 40px); | ||
box-sizing: border-box; | ||
} |