Sha256: 5f384ae067e45b636e0614b269ca491d80eba67567558a735d42b18f1acf8f3f

Contents?: true

Size: 1.49 KB

Versions: 6

Compression:

Stored size: 1.49 KB

Contents

// Cytoplasm LESS Module
// By MacKinley Smith

// Global Element Styles
body {
	margin:0;
	height:100%;
	overflow-y:scroll;
}

// Header
header {
	margin:0px;
	padding:10px;
	overflow:hidden;
	
	h1 {
		margin:0px;
		white-space:nowrap;
		cursor:pointer;
		display:inline;
		text-shadow:0px 0px 10px rgba(0,0,0,0.5);
	}
	#logo {
		z-index:1000;
	}
}

// Navigation
nav {
	ul {
		padding:0px;
		list-style:none;
		li {
			display:inline-block;
		}
	}
}

// Main Content
#main_content {
	min-height:400px;
	margin:0px;
	padding:20px;
	background:white;
	overflow:hidden;
	box-shadow:0px 0px 10px rgba(0,0,0,0.8);
	clear:both;
	
	&>:first-child {
		margin-top:0px;
		padding-top:0px;
	}
	&>:last-child {
		margin-bottom:0px;
		padding-bottom:0px;
	}
}

// Footer
footer {
	padding:10px;
}

// jQuery Plugins
// CytoTable
table.cytoTable {
	width:100%;
	margin-bottom:15px;
	box-shadow:0px 0px 10px rgba(0,0,0,0.5);
	
	td {
		padding:10px;
		
		&.labelcell {
			width:100px;
		}
	}
}

// CytoField
input.cytoField {
	width:100%;
	height:28px;
	border:1px solid #aaa;
	border-radius:5px;
	
	&[type=radio] {width:auto}
	&[type=text], &[type=password] {
		padding:0px 7px;
		box-shadow:inset 0px 0px 5px rgba(0,0,0,0.25);
		font-size:14px;
	}
}

// CytoButton
button, input[type=submit] {
	&.cytoButton {
		border-radius:5px;
		cursor:pointer;
		
		&.large {
			width:100%;
			height:50px;
		}
		&.active {
			box-shadow:inset 0px 0px 10px rgba(0,0,0,0.5);
		}
		&:active {
			box-shadow:inset 0px 0px 10px rgba(0,0,0,0.5);
		}
	}
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
cytoplasm-0.0.6 app/assets/stylesheets/cytoplasm/cytoplasm.less
cytoplasm-0.0.5 app/assets/stylesheets/cytoplasm/cytoplasm.less
cytoplasm-0.0.4 app/assets/stylesheets/cytoplasm/cytoplasm.less
cytoplasm-0.0.3 app/assets/stylesheets/cytoplasm/cytoplasm.less
cytoplasm-0.0.2 app/assets/stylesheets/cytoplasm/cytoplasm.less
cytoplasm-0.0.1 app/assets/stylesheets/cytoplasm/cytoplasm.less