-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
620 additions
and
568 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
.logo { | ||
height: 6em; | ||
padding: 1.5em; | ||
will-change: filter; | ||
transition: filter 300ms; | ||
} | ||
.logo:hover { | ||
filter: drop-shadow(0 0 2em #646cffaa); | ||
} | ||
.logo.react:hover { | ||
filter: drop-shadow(0 0 2em #61dafbaa); | ||
} | ||
|
||
@keyframes logo-spin { | ||
from { | ||
transform: rotate(0deg); | ||
} | ||
to { | ||
transform: rotate(360deg); | ||
} | ||
} | ||
|
||
@media (prefers-reduced-motion: no-preference) { | ||
a:nth-of-type(2) .logo { | ||
animation: logo-spin infinite 20s linear; | ||
} | ||
} | ||
|
||
button:hover { | ||
cursor: pointer; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,60 @@ | ||
.semester-home-body { | ||
display: flex; | ||
flex-direction: column; | ||
height: 100vh; | ||
width: 100vw; | ||
padding-top: var(--S, 16px); | ||
background: var(--White, #FFF); | ||
position: relative; | ||
overflow-x: auto; | ||
overflow-y: auto; | ||
box-sizing: border-box; | ||
.body { | ||
display: flex !important; | ||
justify-content: start !important; | ||
} | ||
|
||
.content { | ||
display: flex; | ||
flex: 1; | ||
flex-direction: column; | ||
padding: 16px; | ||
overflow: hidden; | ||
/* padding: 16px; */ | ||
overflow: auto; | ||
box-sizing: border-box; | ||
} | ||
|
||
.semester-layout { | ||
direction: row; | ||
margin: 32px; | ||
} | ||
|
||
.semester-home { | ||
display: flex; | ||
flex-direction: row; /* Stack items vertically */ | ||
justify-content: flex-start; /* Align content to the top */ | ||
align-items: flex-start; /* Align content to the left */ | ||
/* width: auto; */ | ||
/* min-width: 240px; */ | ||
height: 100vh; /* Make the panel span the full height of the viewport */ | ||
position: fixed; /* Fix the panel to the left side of the page */ | ||
top: 0; | ||
left: 0; | ||
/* padding: 16px; */ | ||
z-index: 1000; /* Ensure it stays above other elements */ | ||
} | ||
|
||
.semester-blocks { | ||
overflow-x: auto; /* Enable horizontal scrolling */ | ||
gap: 12px; | ||
width: 100vw; | ||
height: calc(100vh - 80px); | ||
box-sizing: border-box; | ||
position: relative; | ||
top: 50px; | ||
|
||
|
||
} | ||
|
||
.semester-title { | ||
color: var(--Primary-Text, #000); | ||
/* Web UI/Heading/Heading Large */ | ||
font-family: "Inter Variable"; | ||
font-size: 28px; | ||
font-style: normal; | ||
font-weight: 580; | ||
line-height: 36px; /* 128.571% */ | ||
letter-spacing: -0.28px; | ||
text-align: left; | ||
margin-top: 32px; | ||
margin-left: 32px; | ||
position: sticky; | ||
} | ||
position: fixed; /* Fix the position */ | ||
top: 32px; /* Align it to the top */ | ||
left: 314px; /* Offset to account for the fixed side panel */ | ||
padding-left: 32px; | ||
z-index: 100; /* Ensure it appears above other elements */ | ||
/* width: calc(100% - 240px); Take up the remaining width after the side panel */ | ||
color: var(--Primary-Text, #000); /* Ensure consistent text styling */ | ||
background-color: white; | ||
width: 100%; | ||
font-size: 28px; | ||
font-style: normal; | ||
font-weight: 580; | ||
line-height: 36px; /* 128.571% */ | ||
letter-spacing: -0.28px; | ||
text-align: left; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.