38 lines
788 B
CSS
38 lines
788 B
CSS
body {
|
|
font-family: sans-serif;
|
|
margin: 0;
|
|
}
|
|
.unified_navigator {
|
|
padding: 10px 50px;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
gap: 40px;
|
|
background: rgb(42,25,93);
|
|
background: linear-gradient(90deg, rgba(42,25,93,1) 8%, rgba(60,11,89,1) 49%, rgba(34,0,71,1) 82%);
|
|
color: white;
|
|
box-shadow: 0 10px 10px rgb(128, 128, 128);
|
|
line-height: 3em;
|
|
}
|
|
|
|
.unified_navigator .link {
|
|
//padding: 15px 25px;
|
|
//border: 2px solid red;
|
|
//border-radius: .5em;
|
|
//background: black;
|
|
}
|
|
|
|
.unified_navigator a:link, .unified_navigator a:visited {
|
|
color: #dddddd;
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.unified_navigator a:hover {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.unified_navigator img {
|
|
height: 2em;
|
|
vertical-align: middle;
|
|
margin-right: 1em;
|
|
} |