mirror of
https://github.com/simon987/Much-Assembly-Required-Frontend.git
synced 2025-04-18 02:06:42 +00:00
41 lines
648 B
CSS
Executable File
41 lines
648 B
CSS
Executable File
|
|
@font-face {
|
|
font-family: 'fixedsys';
|
|
src: url("./fonts/FSEX301-L2.ttf");
|
|
}
|
|
|
|
.container {
|
|
width: 100%;
|
|
|
|
|
|
}
|
|
|
|
#game {
|
|
box-shadow: rgba(46, 94, 80, 0.45) 0ex 0ex 2ex;
|
|
/*margin-top: 1em;*/
|
|
outline: none;
|
|
width: 100%;
|
|
margin: 1em 0 1em 1em;
|
|
box-sizing: border-box;
|
|
|
|
/*background: #282828;*/
|
|
}
|
|
|
|
#editor {
|
|
margin: 1em 0 1em 1em;
|
|
height: 30em;
|
|
box-shadow: rgba(46, 94, 80, 0.45) 0ex 0ex 2ex;
|
|
|
|
}
|
|
|
|
#graphContainer {
|
|
height: 500px;
|
|
width: 500px;
|
|
}
|
|
|
|
.ace_gutter-cell.ace_error {
|
|
background-image: url("sprites/err_annotation.png") !important;
|
|
background-position: 2px center;
|
|
}
|
|
|