1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-03 17:46:39 -04:00

clean up partials and styles

This commit is contained in:
2020-01-03 13:58:48 -05:00
parent 5b0c24dbf0
commit ec713f5efe
19 changed files with 35 additions and 34 deletions

View File

@ -33,6 +33,11 @@ div.highlight span {
// line numbers
&.lnt {
color: #999999;
user-select: none; // maybe add prefixes? https://caniuse.com/#feat=user-select-none
// disable text selection: https://caniuse.com/#feat=user-select-none
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
}

View File

@ -1,6 +1,15 @@
@charset "UTF-8";
/*! Fancy Waving Hand Emoji (TM) - https://go.jarv.is/wave */
span.wave {
display: inline-block;
animation-name: wave;
animation-duration: 2.5s;
animation-iteration-count: infinite;
transform-origin: 70% 70%;
}
@keyframes wave {
0% { transform: rotate( 0.0deg); }
10% { transform: rotate(-10.0deg); }