ptut-vhost/webpack/scss/global.scss

57 lines
697 B
SCSS
Raw Permalink Normal View History

@import 'constants';
/* (1) Input */
@import 'global/input';
/* (2) Button */
@import 'global/button';
/* (3) classes that add icons before text */
@import 'global/before-icon';
/* (4) tags */
@import 'global/tag';
/* (4) Links */
2018-02-22 14:17:07 +00:00
a{
color: inherit;
text-decoration: none;
&:after{
content: '';
display: block;
width: 0%;
height: .1em;
background-color: #ddd;
transition: width .1s ease-in-out;
}
&:hover:after{
width: 100%;
}
}
/* (5) Greyed text */
.grey{
color: $secondary-color;
}
/* (6) pointer cursor (2 times the class to increase priority) */
.pointer.pointer{
cursor: pointer;
2018-03-18 15:31:03 +00:00
}
/* (7) Mono font */
.mono{
font-family: 'Mono';
font-size: .9em;
}