﻿/*
  Evolvable Solutions
  Razor Web Control Helpers
  Style Sheet
  Created by: LM
  Version: 1.0
  Date: 2014/12/01
*/


/* autocomplete listbox */
ul.bl {
  list-style: none;
  margin: 0;
  padding: 0;
}

li.bl {
	/*  cursor: n-resize; // moved to code, to activate on editing mode */
  padding-left: 2px;
  border: 1px solid #8fe1fc;
}

  li.bl:nth-child(2n) {
    background-color: #daf3fb;
  }

	.autoloader
	{
		background: url('./images/loader.gif');
		background-repeat: no-repeat;
		background-position: right;
	}


	/* controls display */
	span.ctr {
		background-color: #f7f7f7;
		display:inline-block;
		padding: 0 2px 0 2px;
		border:thin solid white;
		border-width:1px 0 1px 0;
	}

/* warp content for small form factor interfaces */
@media screen and (min-width:600px) {
  label {
    float:left;
    width: 200px;
    color: green;
  }

  control {
    display: table-cell;
    margin-left: 200px;
  }
}

@media screen and (max-width:600px) {
	label {
		color: blue;
	}
}

