Jake Dudson

CSS

What I have done with CSS in Lesson


.redbox {
    width: 200px;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 25px;
	padding-bottom: 25px;
    border: 20px solid #C91212;
	border-top-style: solid;
    border-right-style: dotted;
    border-bottom-style: solid;
    border-left-style: dotted;
    margin: 25px;
	text-align: center;
	background-color: orange;
}

.bluebox {
	width: 150px;
    padding: 50px;
    border: 5px solid #3678EC;
    margin: 25px;
	background-color: blue;
	font-size: 45px;
}

.greenbox {
    width: 300px;
    padding: 50px;
    border: 5px dotted #27DF41;
   	margin-bottom: 1px;
	margin-left: 5px;
	margin-top: 10px;
	margin-right: 15px;
	background-color: pink;
}

.specialhead{
	text-decoration: underline;
	color: hotpink;
	font-size: 50px;
	
}