/*
Allison Obourn
CSC 337, Spring 2019
Lecture 5

Styles for the course webpage to make a sideways menu
*/

#logo {
	float: left;	
}

body {
	font-family: sans-serif;
}

#menu {
	display: flex;
}

ul {
	list-style-type: none;
	padding-left: 0px;
}

#extra {
	background-color: yellow;
	position: absolute;
	top: 0px;
	right: 0px;
}

#undermenu {
	position: relative;
	border: 2px black solid;
}