mirror of
https://github.com/simon987/Much-Assembly-Required-Frontend.git
synced 2025-04-18 18:26:42 +00:00
45 lines
699 B
CSS
Executable File
45 lines
699 B
CSS
Executable File
|
|
@font-face {
|
|
font-family: 'fixedsys';
|
|
src: url("./fonts/FSEX301-L2.ttf");
|
|
}
|
|
|
|
#tabs {
|
|
padding-left: 20px;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
.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: 35em;
|
|
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;
|
|
}
|
|
|