Skip to content
Snippets Groups Projects
Select Git revision
  • e1c47c60d6b37d36d2a11ece06ccc33d2ea535da
  • master default protected
  • leo
  • dex
  • pendulum
  • apfelstruder
  • littlerascal
7 results

style.css

Blame
  • style.css 4.91 KiB
    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;
    	width: 100%;
    	height: 100%;
    	padding: 0px;
    	margin: 0px;
    }
    
    #NROLVIEW {
    	width: 100%;
    	height: 100%;
    }
    
    .view {
    	width: 100%;
    	height: 100%;
    	overflow: hidden;
    	background: #d6d6d6;
    	/*background-image:url("background.png");*/
    	/*background-origin: content-box;*/
      	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.sleeper{
    	display: none;
    }
    
    .msgbox {
    	width: 300px;
    	height: 90%;
    	padding: 10px;
    	margin: 10px;
    	float: right;
    	background-color: rgb(192, 209, 237, 0.5);
    }
    
    .msgboxmsg{
    	padding: 8px;
    	margin-bottom: 3px;
    	background-color: white;
    	font-family: Courier;
    	font-size: 11px;
    	line-height: 15px;
    }
    
    .msgboxbutton:hover{
    	background-color: rgb(255, 209, 237);
    	cursor: pointer;
    }
    
    .plane {
    	position: absolute;
    	width: 100px;
    	height: 100px;
    	/*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;*/
    	background: url("asset/bg.png");
    }
    
    .rsHandle {
    	float: right;
    	position: relative;
    	width: 100px;
    	height: 100px;
    	background: #000;
    	cursor: se-resize;
    }
    
    #programMenu {
    	position: absolute;
    	width: 245px;
    	padding: 10px;
        background-color: #303030;
    }
    
    #perModuleMenu {
    	position: absolute;
    	width: 80px;
    	padding: 3px;
        background-color: #303030;
    }
    
    #floater {
    	position: absolute;
    	font-weight: normal;
    	font-style: none;
    	color: #eee;
    	background-color: #2889af;
    	font-size: 12px;
    	padding: 7px 5px 6px 5px;
    }
    
    .title {
    	font-size: 15px;
    	font-weight: bold;
    	color: #eee;
    }
    
    .def {
    	width: 500px;
    	overflow: hidden;
    	position: absolute;
    	padding: 0px;
    	padding-bottom: 12px;
        background-color: #303030;
    }
    
    .hardware {
    	background-color: #4d4c4c;
    }
    
    .deftitle {
    	font-size: 15px;
    	font-weight: bold;
    	font-style: italic;
    	padding-left:5px;
    	padding-right: 5px;
    	padding-top: 7px;
    	padding-bottom: 7px;
    	color: #eee;
    }
    
    .deftitle:hover{
    	background-color: #969696;
    	cursor: grab;
    }
    
    .deftitle:active{
    	cursor: grabbing;
    }
    
    .inputs {
    	width: 117px;
    	float: left;
    	margin-left: 2px;
    	font-size: 11px;
    	background-color: #1a1a1a;
    	color: #eee;
    }
    
    .inputs.insideout {
    	float: right;
    }
    
    .input:hover {
    	cursor: pointer;
    }
    
    .outputs {
    	width: 117px;
    	float: right;
    	margin-right: 2px;
    	text-align: right;
    	font-size: 11px;
    	background-color: #1a1a1a;
    	color: #eee;
    }
    
    .outputs.insideout {
    	float: left;
    }
    
    .output:hover {
    	cursor: grab;
    }
    
    .states {
    	padding: 0 123px 0 123px;
    	color: #eee;
    }
    
    .state {
    	font-size: 11px;
    	padding: 3px;
    }
    
    .uidiv {
    	width: 396px;
    	padding-top: 5px;
    	margin-left: 2px;
    	margin-right: 2px;
    	float: left;
    }
    
    textarea {
    	resize: none;
    }
    
    /*
    .state li:hover {
    	background-color: #303030;
    }
    */
    
    .stateItem {
    	margin: 3px;
    }
    
    .stateItem input {
    	background-color: #1a1a1a;
    	color: #fcd17b;
    	font-size: 12px;
    	width: 70%;
    	margin-bottom: 2px;
    	margin-top: 4px;
    	padding: 2px;
    	border: 1px solid black;
    	border-radius: 3px;
    }
    
    .stateNumInput input {
    	float: right;
    	clear: both;
    	align: right;
    }
    
    .stateBooleanItem{
    	padding-top: 8px;
    	padding-bottom: 8px;
    }
    
    .stateBooleanItem:hover{
    	background-color: #1a1a1a;
    	cursor: pointer;
    }
    
    .dg.a {
    	margin-right: 0px;
    }
    
    .clear {
    	clear: both;
    }
    
    ul {
    	list-style-type: none;
    	font-size: 15px;
    	font-weight: bold;
    	font-style: italic;
    	color: #eee;
    	padding: 2px 0 2px 0;
    }
    
    li {
    	list-style-type: none;
    	font-weight: normal;
    	font-style: none;
    	color: #eee;
    	font-size: 12px;
    	padding: 7px 5px 6px 5px;
    }
    
    li:hover{
    	background-color: #969696;
    	cursor: pointer;
    }
    
    li:active{
    	background-color: #d1d1d1;
    }
    
    .contextTitle {
    	font-size: 14px;
    	font-weight: bold;
    	font-style: italic;
    	color: #eee;
    	padding: 7px 5px 6px 5px;
    }
    
    
    /*
    .contextTitle:hover {
    	background-color: #969696;
    	cursor: grab;
    }
    */
    
    .contextTitle:active {
    	background-color: #d1d1d1;
    	cursor: grabbing;
    }
    
    .contextmenu {
    	position: absolute;
    	overflow: hidden;
    	width: 245px;
    	padding: 10px;
        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;
    }
    
    /* USING THESE WITHIN BOYOS */
    
    .cuttlefishhunkdom {
    	color: #353a42;
    	background-color: #d5dfef;
    	margin-top: 10px;
    }
    
    .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;
    }
    
    .txtinput {
    	padding: 10px;
    	width: 100%;
    	border: none;
    }