blob: 4664e1e12abf28070e46be3e775e96781af0f241 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
<!-- This is the Root component that loads other components -->
<script lang="ts">
import Sidebar from "./components/Sidebar.svelte";
</script>
<Sidebar />
<style global>
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
html {
font-family: sans-serif, Proxima Nova;
}
}
/* Custom Styles */
@layer utilities {
.assign-box {
/* w-1/3 bg-green-500 flex flex-col border-solid hover:border-4 border-2 border-slate-400 */
width: 33.33%;
display: flex;
flex-direction: column;
border-width: 4px;
border: solid;
border-color: rgb(148 163 184);
}
.assign-box:hover {
border-width: 6px;
border-color: black;
}
.assign-box-header {
font-size: 1.5rem;
font-family: sans;
border: solid;
text-align: center;
height: 10%;
overflow: hidden;
}
}
</style>
|