registration, charts, contracts history

This commit is contained in:
msinkec
2021-08-22 19:07:19 +02:00
parent 540f54dd06
commit 7da73f7d6a
20 changed files with 13999 additions and 489 deletions

13222
static/chart.js Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -119,6 +119,89 @@ label {
margin-bottom: 30px;
}
.container-title {
font-family: Roboto;
font-style: normal;
font-weight: bold;
font-size: 16px;
line-height: 14px;
color: #46535b;
text-align: center;
margin-bottom: 30px;
}
#history-container {
height: 500px;
overflow-y: auto;
}
#contract-container {
height: 300px;
overflow-y: auto;
padding: 20px;
}
.contract-item {
height: 50px;
margin: 5px;
border: 0px;
border-bottom: 2px solid #c4c4c4;
}
.contract-item-title {
font-family: Roboto;
font-style: normal;
font-weight: normal;
font-size: 16px;
color: #46535b;
}
.contract-item-button {
font-family: Roboto;
font-style: normal;
font-weight: normal;
font-size: 16px;
}
.contract-item-date {
font-family: Roboto;
font-style: normal;
font-weight: normal;
font-size: 10px;
color: #46535b;
}
#collaborators-container {
height: 370px;
background: #f5f5f5;
margin: 25px;
padding:5px;
border-radius: 10px;
}
.collaborators-item {
height: 30px;
margin: 5px;
border: 0px;
border-bottom: 2px solid #c4c4c4;
}
.collaborators-item-name {
font-family: Roboto;
font-style: normal;
font-weight: normal;
font-size: 16px;
color: #46535b;
}
#awards-container {
height: 250px;
background: #f5f5f5;
margin: 25px;
padding:5px;
border-radius: 10px;
}
#button-submit {
display: flex;
flex-direction: row;