Bin
2025-12-17 05a69820e0c402b0b33c063d3b922f0a0571cbbb
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
body {
  position: relative;
  margin: 0;
  padding: 0;
 
  --sand_900: #12110D;
  --sand_800: #262522;
  --sand_700: #45433E;
  --sand_600: #6B6860;
  --sand_500: #A49F95;
  --sand_400: #CAC5B8;
  --sand_300: #E1DED5;
  --sand_200: #F0EFEB;
  --sand_100: #F9F8F6;
  --sand_0: #FDFDFC;
 
  --grape_0: #F0F3FE;
  --grape_100: #D4DBFB;
  --grape_500: #566FCF;
  --grape_600: #576CC1;
  --grape_700: #4C5FA9;
  --grape_800: #37447A;
 
  --kale_0: #F4F9F9;
  --kale_400: #57B7AB;
 
  --plum_500: #CC6FBE;
  --plum_400: #E37BD3;
  --plum_100: #F7D6F2;
  --plum_0: #FBF2FC;
 
  --persimmon_300: #FF9F89;
  --persimmon_400: #FF7557;
 
  --canteloupe_0: #FFF6EF;
  --canteloupe_100: #FFE4D0;
  --canteloupe_400: #FFA663;
  --canteloupe_500: #E69559;
  --canteloupe_600: #CC854F;
  --canteloupe_700: #B37445;
 
  --red_1: #FFF1F0;
  --red_3: #FFCCC7;
  --red_7: #CF1322;
  --red_10: #5C0011;
 
  --primary_link: #566FCF;
}
 
.footer {
  flex: none;
  text-align: center;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.footer a {
  line-height: 24px;
  color: var(--color-primary-content);
  text-decoration: inherit;
}
.footer a:hover {
  color: var(--color-primary-content-hover);
}
 
#header {
  background-color: #fff;
  height: 48px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 16px;
  z-index: 100;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1) inset;
  width: 100%;
}
 
#header a {
  color: #304455 !important;
  text-decoration: none;
  font-size: 1.4em;
}
 
#logo img {
  vertical-align: middle;
  height: 28px;
}
 
#logo {
  display: inline-block;
  font-size: 1.5em;
  line-height: 40px;
  color: #273849;
  font-weight: 500;
  display: flex;
}
 
#nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  right: 30px;
  line-height: 40px;
  display: flex;
  align-items: center;
}
 
#nav .break {
  display: none;
}
 
#nav li {
  display: inline-block;
  position: relative;
  margin: 0 0.6em;
}
 
#nav li a {
  font-size: 1em;
}
 
#ls-container {
  flex: 1;
}
 
#label-studio {
  height: 100%;
}