|
@@ -1,3 +1,13 @@
|
|
|
+@keyframes rotate {
|
|
|
+ from {
|
|
|
+ transform: rotate(0deg);
|
|
|
+ }
|
|
|
+
|
|
|
+ to {
|
|
|
+ transform: rotate(360deg);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
.main-frame-page {
|
|
|
@apply relative w-full h-full;
|
|
|
min-width: $small-screen;
|
|
@@ -22,10 +32,16 @@
|
|
|
width: 64px;
|
|
|
height: 64px;
|
|
|
margin-left: 20px;
|
|
|
- transition: all .2s ease-in-out;
|
|
|
+ transition: all 0.2s ease-in-out;
|
|
|
|
|
|
&:hover {
|
|
|
- background: rgba(255, 255, 255, .07);
|
|
|
+ background: rgba(255, 255, 255, 0.07);
|
|
|
+ }
|
|
|
+
|
|
|
+ .icon {
|
|
|
+ &.refreshing {
|
|
|
+ animation: rotate 1s ease 0s;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -33,12 +49,12 @@
|
|
|
@apply flex flex-1;
|
|
|
margin-left: 10px;
|
|
|
font-size: 15px;
|
|
|
- color: rgba(255, 255, 255, .7);
|
|
|
+ color: rgba(255, 255, 255, 0.7);
|
|
|
|
|
|
.item {
|
|
|
&::after {
|
|
|
@apply inline-block;
|
|
|
- content: '/';
|
|
|
+ content: "/";
|
|
|
margin: 0 8px;
|
|
|
}
|
|
|
|
|
@@ -52,15 +68,19 @@
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- .data-big-screen, .fullscreen, .message, .help, .avatar {
|
|
|
+ .data-big-screen,
|
|
|
+ .fullscreen,
|
|
|
+ .message,
|
|
|
+ .help,
|
|
|
+ .avatar {
|
|
|
@apply inline-flex justify-center items-center cursor-pointer;
|
|
|
width: 42px;
|
|
|
height: 64px;
|
|
|
- transition: all .2s ease-in-out;
|
|
|
+ transition: all 0.2s ease-in-out;
|
|
|
margin: 0 3px;
|
|
|
|
|
|
&:hover {
|
|
|
- background: rgba(255, 255, 255, .07);
|
|
|
+ background: rgba(255, 255, 255, 0.07);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -81,7 +101,7 @@
|
|
|
@apply flex justify-center items-center relative cursor-pointer;
|
|
|
height: 50px;
|
|
|
color: #515a6e;
|
|
|
- transition: all .2s ease-in-out;
|
|
|
+ transition: all 0.2s ease-in-out;
|
|
|
|
|
|
&:hover {
|
|
|
color: #2d8cf0;
|