57 lines
741 B
CSS
57 lines
741 B
CSS
body{
|
|
margin:40px auto;
|
|
max-width:650px;
|
|
line-height:1.6;
|
|
font-size:18px;
|
|
color:#444;
|
|
padding: 10px;
|
|
background-image: linear-gradient(to right, #7bebed, #ede77b);*/
|
|
}
|
|
|
|
h1,h2,h3{
|
|
line-height:1.2
|
|
}
|
|
|
|
video {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: blue;
|
|
|
|
}
|
|
|
|
/* All this crap is taken from w3's tutorial for creating a horizontal */
|
|
/* nav bar */
|
|
|
|
.navbar {
|
|
border: 10px solid black;
|
|
}
|
|
|
|
.navbar ul {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.navbar li {
|
|
float: left;
|
|
}
|
|
|
|
.navbar li a {
|
|
display: block;
|
|
text-align: center;
|
|
padding: 14px 16px;
|
|
text-decoration: none;
|
|
color: #444;
|
|
}
|
|
|
|
.navbar li a:hover {
|
|
background-color: #dddddd
|
|
}
|
|
|
|
/* end nav bar crap */
|