-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput.css
77 lines (61 loc) · 1.05 KB
/
input.css
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
@tailwind base;
@tailwind components;
@tailwind utilities;
@tailwind variants;
/* input.css */
html, body {
@apply w-full h-full m-0 p-0 bg-[--blue-gray] text-white;
}
#main {
@apply w-full h-full;
}
/* page.css */
.page {
@apply w-full h-full flex flex-col;
}
.slot-full {
@apply basis-full;
}
.slot-80 {
flex-basis: 80%;
}
.slot-70 {
flex-basis: 70%;
}
.slot-30 {
flex-basis: 30%;
}
.slot-20 {
flex-basis: 20%;
}
.slot-10 {
flex-basis: 10%;
}
/* Colors & More */
:root {
--black: #282834;
--blue: #76B3CD;
--gray: #CDC1C1;
--blue-gray: #2D2E39;
--visp-blue: #182F7A;
--boring-gray: rgb(128, 128, 128);
}
/* Core */
.sidebar {
@apply w-64 ml-10 mt-4 h-full bg-[--black] text-white fixed top-0 left-0 overflow-x-hidden p-10 rounded-t-3xl;
}
.sidebar nav {
@apply mt-12;
}
.sidebar nav ul li a {
@apply flex gap-6 items-center py-4;
}
.sidebar nav ul li {
@apply text-[--gray];
}
.sidebar nav ul li.selected {
@apply text-white;
}
.main {
@apply ml-[296px] pt-4 px-10 pb-8;
}