56 lines
1.1 KiB
CSS
56 lines
1.1 KiB
CSS
/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
|
|
HTML content. To learn how to do something, just try searching Google for questions like
|
|
"how to change link color." */
|
|
|
|
body {
|
|
/* background-color: white; */
|
|
color: white;
|
|
font-family: Verdana;
|
|
background-image: url("../img/backdrop_02.gif");
|
|
}
|
|
a:link{
|
|
color: #CCFF00;
|
|
}
|
|
a:hover{
|
|
color: #50BFE6;
|
|
}
|
|
a:visited{
|
|
color: #FF00CC;
|
|
}
|
|
a:active{
|
|
color: #FFFF66;
|
|
}
|
|
#container{
|
|
margin: 0 auto;
|
|
width: 800px;
|
|
position: relative;
|
|
}
|
|
#content{
|
|
/* background-color: #0e2c5e; */
|
|
/* background-image: url("../img/carpet.png"); */
|
|
width: 800px;
|
|
/* text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black; */
|
|
}
|
|
.sectionHeading {
|
|
width: 800px;
|
|
height: 25px;
|
|
background-image: url("../img/bluetexture.gif");
|
|
background-color: #50BFE6;
|
|
text-align: center;
|
|
font-weight: bolder;
|
|
margin-top: 50px;
|
|
padding-top: 5px;
|
|
position:absolute;
|
|
left: 50%;
|
|
transform: translate(-50%);
|
|
/* color: green; */
|
|
}
|
|
|
|
.section {
|
|
padding-top: 50px;
|
|
}
|
|
|
|
DEL{
|
|
text-decoration: line-through;
|
|
}
|