design/css/main.scss
author ymh <ymh.work@gmail.com>
Wed, 05 Dec 2018 19:00:08 +0100
changeset 193 99e342f9fb0c
parent 43 3c9d3c8f41d1
permissions -rw-r--r--
Display protocol graphically

---
---

nav.navbar {
	background: rgba(255,255,255, .9);
}

$grey-light : rgba(0, 0, 0, .125);

#session {
	background: white; 	// border: 1px black solid;

	display: flex;
	align-items: center;
	justify-content: center;

	position: fixed;
	width: 260px;
	height: 100%;
	z-index: 99999999;
	overflow: hide;

	.card {
		top: -38px;

		width: 220px;
		height: 600px;

		ul {
			//height: 200px;
			overflow-y: scroll;
		}
	}
}

#editor {
	width: 100%;
	background: white;
	//	height: 7em;
	padding-bottom: 0.5em;

	border-top: 1px solid $grey-light;

	textarea {
		// border: 1px solid black;
		// with: 100%;
		// height: 2em;
	}

	.metadata {
		text-align: right;
	}
}

.note {
	.metadata {
		div {
			line-height: 24px;
		}
	}

	.content {
		p:last-child {
			margin-bottom: 0;
		}
	}
}