69 lines
1.1 KiB
CSS
69 lines
1.1 KiB
CSS
*{
|
|
box-sizing: border-box;
|
|
}
|
|
body{
|
|
background-color: #07141f;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
font-family: 'Courier New', Courier, monospace;
|
|
color: whitesmoke;
|
|
}
|
|
.headerPhoto{
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
.titleText{
|
|
background-image: url("../imgs/sunsetv2.jpg");
|
|
background-size:inherit;
|
|
|
|
background-repeat: no-repeat;
|
|
padding: 70px 0;
|
|
text-align: center;
|
|
font-size: 650%;
|
|
font-family: 'Courier New', Courier, monospace;
|
|
margin: 0;
|
|
}
|
|
ul{
|
|
background-color:#0b1f2e;
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
li{
|
|
float: left;
|
|
}
|
|
|
|
li a{
|
|
display: block;
|
|
color: white;
|
|
text-align: center;
|
|
padding: 14px 16px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
li a hover{
|
|
background-color: lightsteelblue;
|
|
}
|
|
|
|
.topBar{
|
|
font-family: 'Courier New', Courier, monospace;
|
|
font-size: 20px;
|
|
}
|
|
table,
|
|
th,
|
|
td {
|
|
border: 1.5px solid lightslategray;
|
|
}
|
|
|
|
.imgs {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.imgs img {
|
|
height: 400px;
|
|
width: auto;
|
|
} |