Skip to content

Instantly share code, notes, and snippets.

@nektro
Last active September 17, 2022 06:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nektro/25ceb432da07a59fa98c to your computer and use it in GitHub Desktop.
Save nektro/25ceb432da07a59fa98c to your computer and use it in GitHub Desktop.
Yaml Css Preprocess
.head {
height: 32px;
font-size: 16px;
line-height: 32px
}
.head ul {
margin: 0
}
.head ul li {
list-style-type: none;
border-top: 2px solid #424242;
display: inline-block
}
.head ul li a {
padding: 0 5px;
color: inherit;
text-decoration: none
}
.head ul li.active {
border-top: 2px solid #ff5252
}
.head ul li:hover {
background-color: #bdbdbd;
border-top: 2px solid #bdbdbd;
color: #424242
}
.head ul li.active:hover {
border-top: 2px solid #ff1744
}
footer.footer>*>* a {
color: #039be5;
}
footer.footer>*>* a:hover {
color: black;
}
.head:
- height: 32px
- font-size: 16px
- line-height: 32px
ul:
- margin: 0px
li:
- list-style-type: none
- border-top: 2px solid #424242
- display: inline-block
a:
- padding: 0px 5px
- color: inherit
- border-top: 2px solid #424242
- display: inline-block
&.active:
- border-top: 2px solid #ff5252
&:hover:
- background-color: #bdbdbd
- border-top: 2px solid #bdbdbd
- color: #424242
&.active:hover:
- border-top: 2px solid #ff1744
footer.footer:
> *:
> *:
a:
- color: #039be5
&:hover:
- color: black
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment