Skip to content
Snippets Groups Projects
style.css 5.34 KiB
Newer Older
  • Learn to ignore specific revisions
  • Jake Read's avatar
    Jake Read committed
    html {
    	height: 100%;
    	/*
    	margin: 0px;
    	padding: 0px;
    	*/
    }
    
    body {
    	height: 100%;
    	overflow: hidden;
    	margin: 0px;
    	padding: 0px;
    	font-family: Palatino, serif;
    	font-size: 11px;
    }
    
    #nav {
    	padding: 5px;
    	background-color: #303030;
    	color: #eee;
    	font-size: 15px;
    	width: 100;
    	z-index: 1000;
    }
    
    #nav a{
    	color: #eee;
    }
    
    #wrapper {
    
    	overflow: hidden;
    
    Jake Read's avatar
    Jake Read committed
    	width: 100%;
    	height: 100%;
    	padding: 0px;
    	margin: 0px;
    }
    
    
    #NROLVIEW {
    
    	width: 100%;
    	height: 100%;
    	overflow: hidden;
    
    	background: #f0f0f0;
    
    Jake Read's avatar
    Jake Read committed
    	/*background-image:url("background.png");*/
    
    	/*background-origin: content-box;*/
    
    Jake Read's avatar
    Jake Read committed
      background-image:
      	linear-gradient(rgba(255, 255, 255, .2) 2px, transparent 2px),
      	linear-gradient(90deg, rgba(255, 255, 255, .2) 2px, transparent 2px);
      background-size: 100px 100px;
    }
    
    .view .offwhite{
    	background: #c1c1c1;
    	background-image:
    		linear-gradient(rgba(255, 255, 255, .2) 2px, transparent 2px),
    		linear-gradient(90deg, rgba(255, 255, 255, .2) 2px, transparent 2px);
    	background-size: 100px 100px;
    
    Jake Read's avatar
    Jake Read committed
    }
    
    
    	height: 500px;
    
    	margin-top: 10px;
    	margin-right: 10px;
    	margin-bottom: 10px;
    
    	float: right;
    	background-color: rgb(192, 209, 237, 0.5);
    }
    
    .msgboxmsg{
    
    	margin-bottom: 3px;
    	background-color: white;
    	font-family: Courier;
    	font-size: 11px;
    
    	background-color: rgb(255, 209, 237);
    	cursor: pointer;
    
    Jake Read's avatar
    Jake Read committed
    	width: 10px;
    	height: 10px;
    
    Jake Read's avatar
    Jake Read committed
    	/*background-image:
      		linear-gradient(rgba(255, 255, 255, .2) 2px, transparent 2px),
    
      		linear-gradient(90deg, rgba(255, 255, 255, .2) 2px, transparent 2px);
      	background-size: 100px 100px;*/
    }
    
    
    Jake Read's avatar
    Jake Read committed
    #programMenu {
    	position: absolute;
    	width: 245px;
    	padding: 10px;
        background-color: #303030;
    }
    
    #perModuleMenu {
    	position: absolute;
    	width: 80px;
    	padding: 3px;
        background-color: #303030;
    }
    
    
    Jake Read's avatar
    Jake Read committed
    #floater {
    	position: absolute;
    	font-weight: normal;
    	font-style: none;
    	color: #eee;
    
    Jake Read's avatar
    Jake Read committed
    	background-color: blue;
    
    Jake Read's avatar
    Jake Read committed
    	font-size: 12px;
    	padding: 7px 5px 6px 5px;
    }
    
    
    Jake Read's avatar
    Jake Read committed
    .title {
    	font-size: 15px;
    	font-weight: bold;
    	color: #eee;
    }
    
    
    Jake Read's avatar
    Jake Read committed
    /* ohboi */
    
    .float {
    	position:absolute;
    }
    
    
    Jake Read's avatar
    Jake Read committed
    /* is title and state */
    .defcore {
    
    Jake Read's avatar
    Jake Read committed
    	width: 275px;
    
    Jake Read's avatar
    Jake Read committed
    	overflow: hidden;
    
    Jake Read's avatar
    Jake Read committed
    	position: absolute;
    	padding: 0px;
    
    	padding-bottom: 12px;
    
    Jake Read's avatar
    Jake Read committed
        background-color: #303030;
    }
    
    
    Jake Read's avatar
    Jake Read committed
    .deftitle {
    
    Jake Read's avatar
    Jake Read committed
    	font-size: 15px;
    	font-weight: bold;
    	font-style: italic;
    
    Jake Read's avatar
    Jake Read committed
    	padding-left:5px;
    	padding-right: 5px;
    
    Jake Read's avatar
    Jake Read committed
    	padding-top: 7px;
    	padding-bottom: 7px;
    	color: #eee;
    }
    
    
    Jake Read's avatar
    Jake Read committed
    .defbutton {
    
    	position: absolute;
    
    Jake Read's avatar
    Jake Read committed
    }
    
    
    Jake Read's avatar
    Jake Read committed
    .inputs {
    
    Jake Read's avatar
    Jake Read committed
    	position:absolute;
    
    Jake Read's avatar
    Jake Read committed
    	width: 117px;
    
    Jake Read's avatar
    Jake Read committed
    	float: left;
    	margin-left: 2px;
    	font-size: 11px;
    	background-color: #1a1a1a;
    	color: #eee;
    }
    
    
    Jake Read's avatar
    Jake Read committed
    .input:hover {
    	cursor: pointer;
    
    Jake Read's avatar
    Jake Read committed
    }
    
    
    Jake Read's avatar
    Jake Read committed
    .inputheader {
    
    Jake Read's avatar
    Jake Read committed
    	background-color: red;
    	padding: 2px;
    
    Jake Read's avatar
    Jake Read committed
    }
    
    
    Jake Read's avatar
    Jake Read committed
    .outputs {
    
    Jake Read's avatar
    Jake Read committed
    	position: absolute;
    
    Jake Read's avatar
    Jake Read committed
    	width: 117px;
    
    Jake Read's avatar
    Jake Read committed
    	float: right;
    	margin-right: 2px;
    	text-align: right;
    	font-size: 11px;
    	background-color: #1a1a1a;
    	color: #eee;
    }
    
    
    Jake Read's avatar
    Jake Read committed
    .output:hover {
    	cursor: grab;
    
    Jake Read's avatar
    Jake Read committed
    }
    
    
    Jake Read's avatar
    Jake Read committed
    .outputheader {
    
    Jake Read's avatar
    Jake Read committed
    	background-color: blue;
    	padding: 2px;
    
    Jake Read's avatar
    Jake Read committed
    }
    
    
    Jake Read's avatar
    Jake Read committed
    	padding: 0 2px 0 2px;
    
    Jake Read's avatar
    Jake Read committed
    	color: #eee;
    }
    
    
    Jake Read's avatar
    Jake Read committed
    	font-size: 11px;
    	padding: 3px;
    }
    
    
    Jake Read's avatar
    Jake Read committed
    .nativewrap {
    	position: absolute;
    	width: 500px; /* many sets with js */
    	color: #353a42;
    	background-color: #d5dfef;
    }
    
    .nativeheader {
    	background-color: green;
    	padding: 2px;
    	color: white;
    }
    
    
    Jake Read's avatar
    Jake Read committed
    .resizehandle {
    	position: absolute;
    
    Jake Read's avatar
    Jake Read committed
    	width: 20px;
    	height: 20px;
    
    Jake Read's avatar
    Jake Read committed
    	cursor: se-resize;
    
    Jake Read's avatar
    Jake Read committed
    .resizehandle:active {
    
    Jake Read's avatar
    Jake Read committed
    	cursor: grab;
    }
    
    
    Jake Read's avatar
    Jake Read committed
    .uidiv {
    	width: 396px;
    	padding-top: 5px;
    	margin-left: 2px;
    	margin-right: 2px;
    	float: left;
    }
    
    textarea {
    	resize: none;
    }
    
    /*
    .state li:hover {
    	background-color: #303030;
    }
    */
    
    
    Jake Read's avatar
    Jake Read committed
    .stateItem {
    	margin: 3px;
    }
    
    
    Jake Read's avatar
    Jake Read committed
    .stateItem input {
    
    Jake Read's avatar
    Jake Read committed
    	background-color: #1a1a1a;
    
    Jake Read's avatar
    Jake Read committed
    	font-size: 12px;
    	width: 70%;
    	margin-bottom: 2px;
    
    Jake Read's avatar
    Jake Read committed
    	margin-top: 4px;
    
    Jake Read's avatar
    Jake Read committed
    	padding: 2px;
    
    Jake Read's avatar
    Jake Read committed
    	border: 1px solid black;
    	border-radius: 3px;
    }
    
    
    Jake Read's avatar
    Jake Read committed
    .stateNumInput input {
    	float: right;
    	clear: both;
    	align: right;
    }
    
    .stateBooleanItem{
    	padding-top: 8px;
    	padding-bottom: 8px;
    }
    
    .stateBooleanItem:hover{
    	background-color: #1a1a1a;
    	cursor: pointer;
    }
    
    
    Jake Read's avatar
    Jake Read committed
    .dg.a {
    	margin-right: 0px;
    }
    
    .clear {
    	clear: both;
    }
    
    ul {
    	list-style-type: none;
    
    Jake Read's avatar
    Jake Read committed
    	font-size: 13px;
    
    Jake Read's avatar
    Jake Read committed
    	font-weight: bold;
    	color: #eee;
    
    Jake Read's avatar
    Jake Read committed
    	padding: 11px 0 0 5px;
    	margin: 0px;
    
    Jake Read's avatar
    Jake Read committed
    }
    
    li {
    	list-style-type: none;
    	font-weight: normal;
    	font-style: none;
    	color: #eee;
    
    Jake Read's avatar
    Jake Read committed
    	font-size: 13px;
    
    Jake Read's avatar
    Jake Read committed
    	padding: 7px 5px 6px 5px;
    }
    
    
    li.highlighted{
    	background-color: #969696;
    }
    
    
    Jake Read's avatar
    Jake Read committed
    li:hover{
    	background-color: #969696;
    
    Jake Read's avatar
    Jake Read committed
    	cursor: pointer;
    
    Jake Read's avatar
    Jake Read committed
    }
    
    li:active{
    	background-color: #d1d1d1;
    
    Jake Read's avatar
    Jake Read committed
    }
    
    
    Jake Read's avatar
    Jake Read committed
    .contextTitle {
    	font-size: 14px;
    	font-weight: bold;
    	font-style: italic;
    	color: #eee;
    	padding: 7px 5px 6px 5px;
    }
    
    
    Jake Read's avatar
    Jake Read committed
    .contextTitle:hover {
    	background-color: #969696;
    	cursor: grab;
    }
    
    Jake Read's avatar
    Jake Read committed
    
    .contextTitle:active {
    	background-color: #d1d1d1;
    	cursor: grabbing;
    }
    
    
    .contextmenu {
    	position: absolute;
    	overflow: hidden;
    	width: 245px;
    
    Jake Read's avatar
    Jake Read committed
      background-color: #303030;
      color: #eee;
    
    }
    
    .contextmenu input {
    	background-color: #1a1a1a;
    	color: #fcd17b;
    	font-size: 12px;
    	width: 70%;
    	margin-bottom: 2px;
    	padding: 2px;
    	border: 1px solid black;
    	border-radius: 3px;
    }
    
    
    Jake Read's avatar
    Jake Read committed
    /* for the linechart, should belong somewhere related */
    
    .line {
      fill: none;
    
      stroke: black;
      stroke-width: 4px;
    
    Jake Read's avatar
    Jake Read committed
    /* USING THESE WITHIN BOYOS */
    
    .btn {
    	padding: 10px;
    	font-size: 15px;
    	text-align: center;
    	background-color: #95ddf9;
    }
    
    .btn:hover{
    	background-color: #bde8f9;
    }
    
    .btn:active{
    	background-color: #fff;
    }
    
    .txt {
    	font-size: 15px;
    	padding: 10px;
    }