Skip to content

Commit

Permalink
deploy website
Browse files Browse the repository at this point in the history
  • Loading branch information
Zixi An committed Apr 26, 2024
1 parent dc6da79 commit b950ed0
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions styles.css
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;
}

0 comments on commit b950ed0

Please sign in to comment.