mirror of
https://github.com/mue/mue.git
synced 2026-07-23 16:57:25 +02:00
feat: marketplace improvements, remove Unsplash text, add Weather skeleton, replace Twitter with X, minor fixes etc
Co-authored-by: Alex Sparkes <alexsparkes@gmail.com> Co-authored-by: Isaac <contact@eartharoid.me>
This commit is contained in:
@@ -202,3 +202,42 @@ body {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
// credit to Kendrick Arnett https://codepen.io/kendrick/pen/WxNwdE
|
||||
.light {
|
||||
.pulse {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
background: linear-gradient(-90deg, #efefef 0%, #cccccc 50%, #efefef 100%);
|
||||
background-size: 400% 400%;
|
||||
animation: pulse 1.2s ease-in-out infinite;
|
||||
@keyframes pulse {
|
||||
0% {
|
||||
background-position: 0% 0%;
|
||||
}
|
||||
100% {
|
||||
background-position: -135% 0%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.dark {
|
||||
.pulse {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
background: linear-gradient(-90deg, #000000 0%, rgb(83, 83, 83) 50%, #000000 100%);
|
||||
background-size: 400% 400%;
|
||||
animation: pulse 1.2s ease-in-out infinite;
|
||||
@keyframes pulse {
|
||||
0% {
|
||||
background-position: 0% 0%;
|
||||
}
|
||||
100% {
|
||||
background-position: -135% 0%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user