2025-04-14 14:25:41 -07:00
|
|
|
// Imports
|
|
|
|
|
|
|
|
|
|
// Resets and base styling
|
2025-04-16 12:02:42 -07:00
|
|
|
@use "./base/reset";
|
|
|
|
|
@use "./base/type";
|
|
|
|
|
@use "./base/main";
|
2025-04-14 14:25:41 -07:00
|
|
|
|
|
|
|
|
// Components
|
2025-04-16 12:02:42 -07:00
|
|
|
@use "./components/header";
|
|
|
|
|
@use "./components/footer";
|
2025-04-14 14:25:41 -07:00
|
|
|
|
|
|
|
|
//page specific styling
|
2025-04-16 12:02:42 -07:00
|
|
|
@use "./page//home";
|
|
|
|
|
@use "./page//login";
|
2025-04-17 10:10:04 -07:00
|
|
|
@use "./page/code_editor";
|
2025-04-21 18:11:43 -07:00
|
|
|
@use "./page/assignment";
|
2025-04-14 14:25:41 -07:00
|
|
|
|
|
|
|
|
// Utilities
|
2025-04-16 12:02:42 -07:00
|
|
|
@use "./utilities/utility-classes";
|
2025-04-14 14:25:41 -07:00
|
|
|
|
|
|
|
|
// Google Fonts - Import
|
2025-04-16 12:02:42 -07:00
|
|
|
@import url("https://fonts.googleapis.com/css?family=Alatsi|Roboto:400,400i,700,700i&display=swap");
|