2018-02-20 21:56:34 +00:00
|
|
|
@import 'constants';
|
|
|
|
|
2018-03-14 16:40:41 +00:00
|
|
|
/* (1) Input */
|
|
|
|
@import 'global/input';
|
2018-03-01 12:16:22 +00:00
|
|
|
|
2018-03-14 16:40:41 +00:00
|
|
|
/* (2) Button */
|
|
|
|
@import 'global/button';
|
2018-02-20 21:56:34 +00:00
|
|
|
|
2018-03-14 16:40:41 +00:00
|
|
|
/* (3) classes that add icons before text */
|
|
|
|
@import 'global/before-icon';
|
2018-02-20 21:56:34 +00:00
|
|
|
|
2018-03-14 16:40:41 +00:00
|
|
|
/* (4) tags */
|
|
|
|
@import 'global/tag';
|
2018-02-20 21:56:34 +00:00
|
|
|
|
2018-03-08 11:39:19 +00:00
|
|
|
|
2018-02-20 21:56:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-03-14 16:40:41 +00:00
|
|
|
/* (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%;
|
|
|
|
}
|
2018-03-06 15:05:29 +00:00
|
|
|
}
|
|
|
|
|
2018-03-14 16:40:41 +00:00
|
|
|
/* (5) Greyed text */
|
2018-03-06 15:05:29 +00:00
|
|
|
.grey{
|
|
|
|
color: $secondary-color;
|
2018-03-14 16:40:41 +00:00
|
|
|
}
|
|
|
|
|
2018-03-15 14:15:12 +00:00
|
|
|
/* (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;
|
2018-03-29 17:30:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
[data-strike='1'],
|
|
|
|
.strike{
|
|
|
|
text-decoration: line-through;
|
|
|
|
opacity: .5;
|
2018-03-15 14:15:12 +00:00
|
|
|
}
|