121 lines
2.0 KiB
CSS
121 lines
2.0 KiB
CSS
:root {
|
|
--darkblue: #082032;
|
|
--yellow: #F0A500;
|
|
--blue: #334756;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Star Jedi';
|
|
src: url('../media/Starjedi.ttf') format('truetype');
|
|
}
|
|
|
|
@media screen {
|
|
body {
|
|
background-color: black;
|
|
background-image: url("../media/images/bg-space.jpg");
|
|
color: var(--yellow);
|
|
background-repeat: repeat-y;
|
|
background-size: 100%;
|
|
}
|
|
|
|
nav,
|
|
#nav {
|
|
background-color: var(--darkblue);
|
|
}
|
|
|
|
main,
|
|
#main {
|
|
background-color: var(--blue);
|
|
}
|
|
|
|
footer,
|
|
#footer {
|
|
background-color: var(--darkblue);
|
|
}
|
|
|
|
h1 {
|
|
font-family: "Star Jedi", 'Franklin Gothic Medium', fantasy;
|
|
text-align: center;
|
|
color: black;
|
|
text-shadow:
|
|
1px 1px yellow,
|
|
-1px -1px yellow,
|
|
1px -1px yellow,
|
|
-1px 1px yellow;
|
|
}
|
|
|
|
h2 {
|
|
text-align: center;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
p {
|
|
text-align: justify;
|
|
}
|
|
|
|
a {
|
|
color: yellow;
|
|
}
|
|
|
|
a:visited {
|
|
color: rgb(224, 224, 0);
|
|
}
|
|
|
|
a:hover {
|
|
color: rgb(192, 192, 0);
|
|
}
|
|
|
|
.nav-link {
|
|
color: yellow !important;
|
|
}
|
|
|
|
.nav-link:hover {
|
|
background-color: rgba(0, 0, 0, 0.64);
|
|
}
|
|
|
|
.active {
|
|
background-color: var(--blue);
|
|
}
|
|
|
|
.poster {
|
|
width: 100%;
|
|
}
|
|
|
|
.jedi {
|
|
height: 400px;
|
|
}
|
|
|
|
#switch-high-contrast {
|
|
height: 40px;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
padding: 4px;
|
|
border: 0;
|
|
background-color: transparent;
|
|
}
|
|
|
|
#switch-high-contrast img {
|
|
height: 100%;
|
|
}
|
|
|
|
.table,
|
|
caption {
|
|
color: var(--yellow);
|
|
border-color: var(--yellow);
|
|
}
|
|
|
|
form label,
|
|
form span,
|
|
legend {
|
|
font-weight: bold;
|
|
}
|
|
|
|
input[type="reset"],
|
|
input[type="submit"] {
|
|
width: 40%;
|
|
color: white;
|
|
font-weight: bold;
|
|
border: 0;
|
|
}
|
|
} |