Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
hexylena committed May 18, 2023
1 parent 7c625ad commit 0aa3a97
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 29 deletions.
36 changes: 33 additions & 3 deletions assets/css/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -745,17 +745,17 @@ blockquote {
@media (max-width: 768px) {
.navbar {
.dropdown-menu {
background-color: transparent;
background-color: var(--color-background);
border-color: transparent;
}

.dropdown-item {
color: var(--text-color-muted);
color: var(--text-color);

&:hover,
&:focus,
&:active {
background-color: transparent;
background-color: var(--brand-color);
color: var(--text-color);
}
}
Expand Down Expand Up @@ -1429,3 +1429,33 @@ a[target="_blank"]::after {
}
}
}

// For the git-gat learning pathway boxes
#git-gat-timeline {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
#git-gat-timeline li {
display: flex;
flex-direction: column;
border: 1px solid var(--text-color);
border-radius: 5px;
padding: 0.5em;
margin: 0.5em;
}
#git-gat-timeline li.active {
background: #a8ffa8;
}
#git-gat-timeline li.active a {
color: black;
}
#git-gat-timeline li.disabled {
background: #eee;
}
#git-gat-timeline li.disabled a {
color: #555;
}
#git-gat-timeline span {
align-self: center;
}
26 changes: 0 additions & 26 deletions topics/admin/faqs/git-gat-path.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,29 +32,3 @@ The yearly Galaxy Admin Training follows a specific ordering of tutorials. Use t
{% endunless %}
{% endfor %}
</ol>

<style type="text/css">
#git-gat-timeline {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
#git-gat-timeline li {
display: flex;
flex-direction: column;
border: 1px solid black;
border-radius: 5px;
padding: 0.5em;
margin: 0.5em;
}
#git-gat-timeline li.active {
background: #a8ffa8;
color: black;
}
#git-gat-timeline li.disabled {
background: #eee;
}
#git-gat-timeline span {
align-self: center;
}
</style>

0 comments on commit 0aa3a97

Please sign in to comment.