Skip to content

Commit

Permalink
Moved CSS from file into a style tag in the index for the parentage v…
Browse files Browse the repository at this point in the history
…iewer.
  • Loading branch information
That-Thing committed Dec 21, 2024
1 parent d57bc0d commit 5e9c873
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 47 deletions.
46 changes: 0 additions & 46 deletions tools/parentage/css/main.css

This file was deleted.

49 changes: 48 additions & 1 deletion tools/parentage/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,54 @@
{% include head.html %}
<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
<script src="/assets/js/parentage.js"></script>
<link rel="stylesheet" href="./css/main.css">
<style>
.uk-button-primary {
background-color: #235626;
}
.uk-button-primary:hover {
background-color: #1a4720;
}
.uk-button-primary:disabled:hover {
background-color: transparent;
}
.uk-link, a, .uk-nav-default > li > a:hover, .uk-dropdown-nav > li.uk-active > a, .uk-dropdown-nav > li > a:hover {
color: #060;
}
.uk-link:hover, a:hover {
color: #1a4720;
}
.uk-table th {
color: #2b2b2b;
font-weight: 600;
}
html, .uk-text-meta, .uk-textarea, .uk-select, .uk-dropdown-nav > li > a, .uk-nav-default > li > a {
color: #282828;
}
label {
display: block;
}

.letter-filter {
margin: 20px 0;
}

.letter-filter span {
margin-right: 10px;
cursor: pointer;
font-weight: bold;
font-size: 1.2em;
}

.letter-filter span:hover {
color: #1a4720;
text-decoration: underline;
}

.letter-filter span.active {
color: #060;
text-decoration: underline;
}
</style>
</head>

<body>
Expand Down

0 comments on commit 5e9c873

Please sign in to comment.