mirror of
https://github.com/neocities/neocities.git
synced 2025-04-25 01:32:36 +02:00
26 lines
430 B
SCSS
26 lines
430 B
SCSS
// ----------------------------------------------------------------
|
|
// Basic Setups for Navigation Elements
|
|
// ----------------------------------------------------------------
|
|
|
|
nav{
|
|
ul,
|
|
ol{
|
|
@extend .clearfix;
|
|
list-style:none;
|
|
margin:0;
|
|
padding:0;
|
|
}
|
|
|
|
li{margin:0}
|
|
|
|
a{
|
|
display:inline-block;
|
|
padding:$spacing $spacing*2;
|
|
text-decoration:underline;
|
|
|
|
&:hover{
|
|
text-decoration:none;
|
|
}
|
|
|
|
}
|
|
}
|