/*Homework 4 CSS adding tables and lists
Jade Holt
April 2,2020*/

/*Setting Bullet Style for unordered and ordered list*/
ol{
list-style:circle outside;
}/*style declaration*/ 

ul{list-style:none url(images/cloudtoon.jpg) inside;}

/*Setting up the table style*/
table{table-layout:auto;
		border-spacing:8px;
		border-collapse:separate;
		}
/*Cursor style in the body*/
body{
cursor:url(images/darkcloud.png) 20 20, pointer;
}
/*Adding graphic at the beginning and end of text*/
.first::before{
	content:url(images/darkcloud.png);
}
.first::after{
	content:url(images/darkcloud.png);
}
/* Adding quotes*/
*{
	quotes:'<<' '>>' '<' '>';
}