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

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 27 additions & 2 deletions _sass/nimitta.scss
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,37 @@ header.site-header {
}
a.page-link {
color: white;
position: relative;
display: inline-block;
text-decoration: none;
&:not(:last-child) {
margin-right: 13px;
}
}
a.highlighted-nav-link {
border-bottom: 1px solid white;

a.page-link::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
top: 45px;
width: 0;
height: 2px;
background: #D5D5D5;
@include media-query(764px) {
top: 38px !important;
}
}
a.page-link:hover::after,
a.page-link.underline-page::after,
a.page-link.highlighted-nav-link::after {
width: 100%;
}
a.page-link.underline-page {
color: white !important;
}
a.page-link.highlighted-nav-link::after{
background: white;
}
}
.site-title {
Expand Down
13 changes: 12 additions & 1 deletion assets/css/frontpage.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
margin-right: auto;
margin-left: auto;
text-align: center;
gap: 0.1px;
}

.learning_styles li {
Expand All @@ -22,6 +23,17 @@
margin: auto;
margin-bottom: 7px;
z-index: 5;
cursor: pointer;
Comment thread
khemarato marked this conversation as resolved.
transition: box-shadow linear 0.1s;
}
.learning_styles li a {
Comment thread
khemarato marked this conversation as resolved.
text-decoration: none !important;
}
.learning_styles li:hover{
box-shadow: 0 0 16px -5px gray;
}
.learning_styles{
margin-top: 35px;
Comment thread
khemarato marked this conversation as resolved.
}

.learning_styles .ls_name {
Expand Down Expand Up @@ -64,7 +76,6 @@ div.herotext {
max-width: 30em;
margin-left: auto;
margin-right: auto;
padding: 20px;
padding-top: 80px;
margin-bottom: -100px;
color: $banner-color;
Expand Down