70 lines
950 B
CSS
Executable File
70 lines
950 B
CSS
Executable File
* {
|
|
font-family:'Courier New', Courier, monospace;
|
|
margin: 0;
|
|
}
|
|
.nav-bar h1
|
|
{
|
|
color: darkorange;
|
|
}
|
|
.nav-bar {
|
|
background-color: darkgreen;
|
|
padding-left: 40px;
|
|
padding-top: 20px;
|
|
padding-bottom: 20px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-content: center;
|
|
padding-right: 20px;
|
|
}
|
|
.nav-bar ul
|
|
{
|
|
display: flex;
|
|
list-style-type: none;
|
|
flex-wrap: wrap;
|
|
align-content: center;
|
|
}
|
|
.nav-link
|
|
{
|
|
font-size: 1.25rem;
|
|
padding-left: 20px;
|
|
}
|
|
.nav-link a
|
|
{
|
|
text-decoration: none;
|
|
color: blue;
|
|
}
|
|
.nav-link a:visited
|
|
{
|
|
color: blue;
|
|
cursor: pointer;
|
|
}
|
|
.nav-link a:hover
|
|
{
|
|
color: orangered;
|
|
}
|
|
.nav-link a:selected
|
|
{
|
|
color: orange;
|
|
}
|
|
|
|
main {
|
|
margin: 5%;
|
|
}
|
|
body {
|
|
background-color: #222;
|
|
color: white;
|
|
}
|
|
.website_table th,td
|
|
{
|
|
border: 1px solid;
|
|
}
|
|
a {
|
|
color: green;
|
|
}
|
|
a:visited {
|
|
color: lightseagreen;
|
|
|
|
}
|
|
a:hover {
|
|
color: orange;
|
|
} |