103 lines
1.5 KiB
CSS
103 lines
1.5 KiB
CSS
html {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
body {
|
|
margin:0;
|
|
padding: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
/*------Cover/Title------*/
|
|
div.cover {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
position: relative;
|
|
background-attachment: fixed;
|
|
background-image: url(images/introbg.jpg);
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
p.cover {
|
|
margin: 0;
|
|
padding: 25% 0;
|
|
right: 0;
|
|
text-align: center;
|
|
height: 100%;
|
|
position: absolute;
|
|
width: 40%;
|
|
border: 5px solid red;
|
|
font-size: 30px;
|
|
|
|
}
|
|
|
|
/* nav Bar */
|
|
.header {
|
|
margin: 0;
|
|
position: fixed;
|
|
top: 0px;
|
|
height: 50px;
|
|
width: 100%;
|
|
border: 1px dotted blue;
|
|
background-color: purple;
|
|
z-index: 1;
|
|
}
|
|
|
|
li {
|
|
text-align: center;
|
|
color: white;
|
|
padding: 5px;
|
|
display: inline-block;
|
|
right: 50%;
|
|
}
|
|
|
|
|
|
/*------intro of Mr.Sewell segment------*/
|
|
div.intro {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 75%;
|
|
width: 100%;
|
|
position: relative;
|
|
background-color: purple;
|
|
}
|
|
|
|
p.intro{
|
|
margin: 5px;
|
|
padding: 0;
|
|
left: 0;
|
|
position: absolute;
|
|
height:98%;
|
|
width:40%;
|
|
background-color: red;
|
|
}
|
|
|
|
p.intro2 {
|
|
margin: 5px;
|
|
padding: 0;
|
|
right:0;
|
|
height: 98%;
|
|
width: 58%;
|
|
background-color: pink;
|
|
position: absolute;
|
|
}
|
|
|
|
|
|
/*---------music shit-----*/
|
|
|
|
|
|
div.music {
|
|
margin:0;
|
|
padding: 0;
|
|
height: 30%;
|
|
position: absolute;
|
|
width: 100%;
|
|
background-color: grey;
|
|
}
|