thejerks.club/css/main.css

67 lines
845 B
CSS
Raw Permalink Normal View History

2023-01-03 15:51:15 -05:00
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);*/
2023-01-03 15:51:15 -05:00
}
h1,h2,h3{
line-height:1.2
}
video {
width: 100%;
2023-04-29 17:59:04 -04:00
height: auto;
}
2023-04-29 17:59:04 -04:00
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 */
2024-03-31 03:05:52 -04:00
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 15px
}