Skip to content

Commit

Permalink
Image Tag updates (#63)
Browse files Browse the repository at this point in the history
* docs and website updates

* * Add CNAME for github pages to work
* Some design tweaks for the Audio tag

* Boolean value in MST deserialization

* Hotfix

* Fix typo in example

* Deserialize boolean in interfaces

* MST Boolean

* Image multilabeling & new collection

* Refresh examples

* Comment in RectangleLabels

* Fix bug in Audio+

* Fix bug in Text

* Add build to lint-staged

* Build with fix

* Infomodal

* Part of progress in image module

* Adding KeyPoints annotation (#52)

* Adding KeyPoints annotation
Image zoom on mouse wheel
Polygons update

* Fix typo in examples

* RectangleL comment code

* typo

* Check labels before send

* booleans

* Initial Develop branch

* update stage width even for plain images (#57)

* Header var fix (#56)

* add templated header

* fix test

* removing debug messages

* Add gitter badge

* HOC of controls (#58)

* Completion up

* Labels module to HOC function

* Label Mixin

* Release v.0.1.2

* Added pycache in gitignore

* example renderings

* text updates

* descriptions

* subheaders

* index udpates

* Feature/rect on image (#60)

* draw rect on image and polygon fixes

* Mixin rename & clear poly

* Add background to RectRegion (#61)

* close polygon when deserializing (#62)

* Public and Build update

* Docs update

* Release v.0.1.3

* Support of multi (#69)

* Support of multi

* Fix bash script for UNIX

* Feature/preview for configs (#68)

* playground page for Label Studio, and live preview

* https -> http

* Hexo newline

* style changes, making it more adaptable

* typoe

* fix mobile menu not showing up on the index page

* front page

* docs changes

* margins for images

* embed doc

* more images

* docs updates

* Update route of config

* Release v.0.1.4
  • Loading branch information
shevchenkonik authored Sep 30, 2019
1 parent da16a24 commit a3e054e
Show file tree
Hide file tree
Showing 154 changed files with 27,002 additions and 646 deletions.
4 changes: 2 additions & 2 deletions backend/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ lxml==4.2.5
spacy==2.1.7
appdirs==1.4.3
mixpanel==4.4.0
pandas==0.25.0
Pillow==6.1.0
pandas==0.24.0
Pillow==6.1.0
104 changes: 101 additions & 3 deletions backend/static/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,25 @@ table {
border-collapse: collapse;
}

h2 {
font-size: 1.2em;
font-weight: bold;
}

td,
th {
padding: 0.4em 2em;
border: 1px solid #ccc;
}

.content {
max-width: 1400px;
padding: 1em 2em;
display: flex;
flex-direction: column;
align-items: center;
}

.wrapper {
margin: 0 auto;
max-width: 1400px;
text-align: center;
}

Expand Down Expand Up @@ -67,3 +73,95 @@ th {
a {
text-decoration: none;
}

#header {
background-color: #fff;
display: flex;
align-items: center;
padding: 10px 20px 10px 40px;
position: relative;
z-index: 100;
box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 3px 0px;
margin-bottom: 3em;
}

#logo {
display: inline-block;
font-size: 1.5em;
line-height: 40px;
color: #273849;
font-family: "Dosis", "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
font-weight: 500;
display: flex;
}

#logo img {
vertical-align: middle;
margin-right: 6px;
width: 40px;
height: 40px;
}

#nav {
list-style-type: none;
margin: 0;
padding: 0;
position: absolute;
right: 30px;
line-height: 40px;
display: flex;
align-items: center;
}

#nav a {
text-decoration: underline;
color: #304455;
font-family: "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
margin-right: 1em;
font-size: 14px;
}

.btn {
line-height: 1.5;
position: relative;
display: inline-block;
font-weight: 400;
white-space: nowrap;
text-align: center;
background-image: none;
border: 1px solid transparent;
-webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.015);
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.015);
cursor: pointer;
-webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-ms-touch-action: manipulation;
touch-action: manipulation;

padding: 10px 25px;
font-size: 14px;
font-weight: bold;
border-radius: 4px;
color: rgba(0, 0, 0, 0.65);
background-color: #fff;
border-color: #d9d9d9;

color: #fff;
background-color: #1890ff;
border-color: #1890ff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
-webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
margin-right: 10px;
padding-top: 7px;
}

.delim {
color: #89ac00;
margin-right: 1em;
font-weight: bold;
}
Loading

0 comments on commit a3e054e

Please sign in to comment.