Compare commits
8 Commits
6595a7f8bb
...
83512887aa
| Author | SHA1 | Date | |
|---|---|---|---|
| 83512887aa | |||
| 4ef2bdb772 | |||
| 6559a06acc | |||
| 449096b8c4 | |||
| 9abd91b2ed | |||
| 8c7fb8d9a5 | |||
| 29548029a1 | |||
| b0471a3a2f |
Binary file not shown.
|
Before Width: | Height: | Size: 126 KiB |
@@ -11,8 +11,6 @@ import Footer from "@/components/Footer/Footer";
|
|||||||
import Terminal from "@/components/Terminal/Terminal";
|
import Terminal from "@/components/Terminal/Terminal";
|
||||||
import Timetable from "@/components/Timetable/Timetable";
|
import Timetable from "@/components/Timetable/Timetable";
|
||||||
import Weather from "@/components/Weather/Weather";
|
import Weather from "@/components/Weather/Weather";
|
||||||
|
|
||||||
import amogus from "/img/amogus.png";
|
|
||||||
import FourTwenty from "../FourTwenty/FourTwenty";
|
import FourTwenty from "../FourTwenty/FourTwenty";
|
||||||
import style from "./style.module.css";
|
import style from "./style.module.css";
|
||||||
|
|
||||||
@@ -44,9 +42,6 @@ export default function Dashboard() {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={`${style.dashboard} ${scheme}`}>
|
<div className={`${style.dashboard} ${scheme}`}>
|
||||||
<div className={style.amogus}>
|
|
||||||
<img src={amogus} alt="Amogus" />
|
|
||||||
</div>
|
|
||||||
<div className={style.body}>
|
<div className={style.body}>
|
||||||
<CardColumn>
|
<CardColumn>
|
||||||
<Card icon="🚊" name="Timetable">
|
<Card icon="🚊" name="Timetable">
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
.body {
|
.body {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
padding: 30px;
|
margin: 30px;
|
||||||
overflow: scroll;
|
overflow: scroll;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -25,30 +25,3 @@
|
|||||||
.night {
|
.night {
|
||||||
background-color: #2a3f55;
|
background-color: #2a3f55;
|
||||||
}
|
}
|
||||||
|
|
||||||
.amogus {
|
|
||||||
z-index: 100;
|
|
||||||
position: absolute;
|
|
||||||
scale: 60%;
|
|
||||||
animation:
|
|
||||||
x 10s linear infinite alternate,
|
|
||||||
y 7s linear infinite alternate;
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes x {
|
|
||||||
from {
|
|
||||||
left: 0;
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
left: calc(100vw - 70px);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes y {
|
|
||||||
from {
|
|
||||||
top: 0;
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
top: calc(100vh - 90px);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
Reference in New Issue
Block a user