Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 43 additions & 1 deletion index.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,42 @@ header {
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
border-bottom: 3px solid #E2001A;
padding-bottom: 10px;
}

header > * {
display: inline;
margin-right: 10px;
}

header h1 {
color: #E2001A;
}

header img {
max-height: 60px;
width: auto;
}

input, select {
border-radius: 5px;
}

button {
background-color: #E2001A;
color: white;
border: none;
padding: 8px 16px;
border-radius: 5px;
cursor: pointer;
font-weight: bold;
}

button:hover {
background-color: #c00016;
}

.buttons {
text-align: right;
margin: 15px 0;
Expand Down Expand Up @@ -60,7 +85,11 @@ footer {

footer a {
text-decoration: none;
color: grey;
color: #E2001A;
}

footer a:hover {
text-decoration: underline;
}

@media (prefers-color-scheme: dark) {
Expand All @@ -72,7 +101,20 @@ footer a {
background-color: #333;
color: white;
}
button {
background-color: #E2001A;
color: white;
}
button:hover {
background-color: #ff1a2e;
}
pre {
background-color: #333;
}
header {
border-bottom-color: #E2001A;
}
footer a {
color: #ff4d5e;
}
}
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<body onload="load_config()">

<header>
<img src='https://avatars.githubusercontent.com/u/37844?s=96&v=4' />
<img src='https://www.hs-osnabrueck.de/typo3conf/ext/hsosna_sitepackage/Resources/Public/Images/logo.svg' alt='Hochschule Osnabrück Logo' />
<h1>Virtual Machine Selector</h1>
</header>

Expand Down Expand Up @@ -44,7 +44,7 @@ <h1>Virtual Machine Selector</h1>
<footer>
<a href=https://github.com/virtUOS/vm-selector>GitHub</a>
|
<a href=https://www.virtuos.uni-osnabrueck.de/serviceseiten/impressum.html>Impressum</a>
<a href=https://www.hs-osnabrueck.de/impressum/>Impressum</a>
</footer>

</body>
Expand Down