This commit is contained in:
Leon Noe Jovan 2023-01-16 18:52:30 +01:00
parent f627218e41
commit 2868cf3548
26 changed files with 1483 additions and 855 deletions

15
app.py
View File

@ -325,14 +325,21 @@ def solar(text):
show_upload_form = True show_upload_form = True
contract_school = portal.solar.get_institution_contract(current_user_institution.id) contract_school = portal.solar.get_institution_contract(current_user_institution.id)
cooperation_history = portal.solar.get_institution_cooperation_history(current_user_institution.id) cooperation_history = portal.solar.get_institution_cooperation_history(current_user_institution.id)
logging.error(cooperation_history)
institution_id = current_user_institution.id institution_id = current_user_institution.id
if portal.solar.is_institution_coordinator(current_user_obj.id, current_user_institution.id): if portal.solar.is_institution_coordinator(current_user_obj.id, current_user_institution.id):
contracts_students = portal.solar.get_institution_student_contracts(current_user_institution.id) contracts_students = portal.solar.get_institution_student_contracts(current_user_institution.id)
enable_upload_school_contract = True enable_upload_school_contract = True
else: else:
contracts_students = portal.solar.get_institution_student_contracts(current_user_institution.id, current_user_obj.id) contracts_students = portal.solar.get_institution_student_contracts(current_user_institution.id, current_user_obj.id)
institution_users = portal.solar.get_all_active_institution_users(current_user_institution.id),
#logging.error(institution_users)
role_map = dict()
for institution_user in institution_users[0]:
#logging.error(institution_user)
role_map[institution_user.id] = portal.solar.get_user_institution_role_str(institution_user.id, current_user_institution.id)
return render_template('solar-pogodbe.html', return render_template('solar-pogodbe.html',
ROUTE_PREFIX=ROUTE_PREFIX, ROUTE_PREFIX=ROUTE_PREFIX,
contracts_students=contracts_students, contracts_students=contracts_students,
@ -341,6 +348,8 @@ def solar(text):
show_upload_form=show_upload_form, show_upload_form=show_upload_form,
collaborators=collaborators, collaborators=collaborators,
cooperation_history=cooperation_history, cooperation_history=cooperation_history,
institution_users = institution_users[0],
role_map=role_map,
user_id=current_user.id, user_id=current_user.id,
institution_id=institution_id, institution_id=institution_id,
is_admin=is_admin, is_institution_coordinator=current_user_institution_coordinator) is_admin=is_admin, is_institution_coordinator=current_user_institution_coordinator)
@ -895,7 +904,7 @@ def solar_institution_add_user():
new_user_id = portal.solar.register_new_user(name, email, password) new_user_id = portal.solar.register_new_user(name, email, password)
portal.solar.add_user_to_institution(new_user_id, current_user_institution.id, role) portal.solar.add_user_to_institution(new_user_id, current_user_institution.id, role)
portal.solar.add_cooperation_history_item(new_user_id, current_user_institution.id, role) portal.solar.add_cooperation_history_item(new_user_id, current_user_institution.id, role)
portal.solar.activate_user(new_user_id) portal.solar.activate_user(new_user_id)
#token za nastaviti geslo #token za nastaviti geslo
jwt_token = portal.solar.get_password_reset_token(email, config['APP_SECRET_KEY']) jwt_token = portal.solar.get_password_reset_token(email, config['APP_SECRET_KEY'])

View File

@ -565,7 +565,7 @@ def get_institution_cooperation_history(institution_id):
UserCooperationHistory.institution == institution_id, UserCooperationHistory.institution == institution_id,
).order_by(UserCooperationHistory.timestamp.desc()).all() ).order_by(UserCooperationHistory.timestamp.desc()).all()
return items
res = [] res = []
prev_schoolyear = None prev_schoolyear = None

View File

@ -2,19 +2,22 @@
html { html {
font-family: 'Roboto', sans-serif; font-family: 'Roboto', sans-serif;
font-size: 16px; font-size: 16px;
color: #46535B; } color: #46535B;
}
body { body {
font-size: 16px; font-size: 16px;
padding: 0; padding: 0;
margin: 0; } margin: 0;
}
h1 { h1 {
font-size: 30px; font-size: 30px;
font-style: normal; font-style: normal;
font-weight: 300; font-weight: 300;
line-height: 35px; line-height: 35px;
color: #006CB7; } color: #006CB7;
}
h2 { h2 {
font-size: 18px; font-size: 18px;
@ -22,16 +25,19 @@ h2 {
font-weight: 300; font-weight: 300;
line-height: 21px; line-height: 21px;
text-transform: uppercase; text-transform: uppercase;
color: #006CB7; } color: #006CB7;
}
h3 { h3 {
font-size: 18px; font-size: 18px;
font-style: normal; font-style: normal;
font-weight: 300; font-weight: 300;
line-height: 21px; } line-height: 21px;
}
em { em {
font-weight: 300; } font-weight: 300;
}
.btn { .btn {
border: none; border: none;
@ -43,36 +49,46 @@ em {
font-size: 1.125rem; font-size: 1.125rem;
font-weight: 400; font-weight: 400;
cursor: pointer; cursor: pointer;
transition: opacity 0.3s ease-out; } -webkit-transition: opacity 0.3s ease-out;
.btn:hover { transition: opacity 0.3s ease-out;
opacity: 0.8; } }
.btn:disabled {
cursor: default; .btn:hover {
opacity: 0.5; } opacity: 0.8;
}
.btn:disabled {
cursor: default;
opacity: 0.5;
}
.panel { .panel {
background: #F5F5F5; background: #F5F5F5;
padding: 40px 60px; padding: 40px 60px;
border-radius: 20px; border-radius: 20px;
max-width: 30rem; } max-width: 30rem;
.panel .panel-logo { }
position: absolute;
top: -60px; .panel .panel-logo {
left: 0; position: absolute;
right: 0; top: -60px;
display: block; left: 0;
margin: auto; right: 0;
background: #F5F5F5; display: block;
padding: 20px 30px; margin: auto;
width: 100px; background: #F5F5F5;
border-radius: 100%; padding: 20px 30px;
text-align: center; } width: 100px;
border-radius: 100%;
text-align: center;
}
.line { .line {
background: #C4C4C4; background: #C4C4C4;
height: 2px; height: 2px;
width: 200px; width: 200px;
margin: auto; } margin: auto;
}
.a-right { .a-right {
display: block; display: block;
@ -80,79 +96,114 @@ em {
font-size: 10px; font-size: 10px;
text-decoration: none; text-decoration: none;
color: #006CB7; color: #006CB7;
text-transform: uppercase; } text-transform: uppercase;
}
.alert { .alert {
position: relative; position: relative;
color: #8D3D3D; color: #8D3D3D;
margin-bottom: 2rem; } margin-bottom: 2rem;
.alert.alert-success { }
color: #88B52F; }
.alert img { .alert.alert-success {
position: relative; color: #88B52F;
top: 0.25rem; }
width: 1.8rem; }
.alert p { .alert img {
position: absolute; position: relative;
display: flex; top: 0.25rem;
flex-direction: column; width: 1.8rem;
justify-content: center; }
align-items: center;
height: 2rem; .alert p {
left: 3rem; position: absolute;
top: 0; display: -webkit-box;
margin: 0; display: -ms-flexbox;
text-transform: uppercase; } display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
height: 2rem;
left: 3rem;
top: 0;
margin: 0;
text-transform: uppercase;
}
.submit-alert { .submit-alert {
background: white; background: white;
border: 2px solid #B7DB70; border: 2px solid #B7DB70;
box-sizing: border-box; -webkit-box-sizing: border-box;
border-radius: 8px; } box-sizing: border-box;
.submit-alert .btn { border-radius: 8px;
margin-top: 0.5rem; }
background: #88B52F;
border-radius: 4px; } .submit-alert .btn {
margin-top: 0.5rem;
background: #88B52F;
border-radius: 4px;
}
.contract-item { .contract-item {
position: relative; position: relative;
margin-left: 3rem; margin-left: 3rem;
border-bottom: 1px solid #C4C4C4; border-bottom: 1px solid #C4C4C4;
padding-bottom: 1.25rem; } padding-bottom: 1.25rem;
.contract-item .contract-item-icon { }
position: absolute;
left: -3rem; .contract-item .contract-item-icon {
top: 0; position: absolute;
width: 2rem; left: -3rem;
height: 2rem; } top: 0;
.contract-item .contract-item-title { width: 2rem;
font-weight: 500; height: 2rem;
font-size: 0.875rem; }
line-height: 1rem; }
.contract-item .contract-item-date { .contract-item .contract-item-title {
font-weight: normal; font-weight: 500;
font-size: 0.625rem; font-size: 0.875rem;
line-height: 0.75rem; line-height: 1rem;
text-transform: uppercase; } }
.contract-item .contract-item-download {
position: absolute; .contract-item .contract-item-date {
right: 0; font-weight: normal;
top: 1rem; font-size: 0.625rem;
font-size: 0.75rem; line-height: 0.75rem;
line-height: 0.825rem; text-transform: uppercase;
text-transform: uppercase; }
color: #006CB7;
text-decoration: none; } .contract-item .contract-item-download {
position: absolute;
right: 0;
top: 1rem;
font-size: 0.75rem;
line-height: 0.825rem;
text-transform: uppercase;
color: #006CB7;
text-decoration: none;
}
.team-item { .team-item {
background: white; background: white;
width: 100%; width: 100%;
padding-left: 1rem; padding-left: 1rem;
position: relative; } position: relative;
.team-item .team-item-name { margin-bottom: 1rem;
line-height: 3.25rem; } }
.team-item .team-item-name .team-item-role {
color: #848C90;
margin-left: 1rem; }
/*# sourceMappingURL=contracts.css.map */ .team-item .team-item-name {
line-height: 3.25rem;
}
.team-item .team-item-name .team-item-role {
color: #848C90;
margin-left: 1rem;
}
/*# sourceMappingURL=contracts.css.map */

View File

@ -1,7 +1,11 @@
{ {
"version": 3, "version": 3,
"mappings": "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", "mappings": "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",
"sources": ["slovenscina-theme.scss","slovenscina-elements.scss","contracts.scss"], "sources": [
"names": [], "contracts.scss",
"file": "contracts.css" "slovenscina-elements.scss",
"slovenscina-theme.scss"
],
"names": [],
"file": "contracts.css"
} }

View File

@ -40,6 +40,7 @@
width:100%; width:100%;
padding-left:1rem; padding-left:1rem;
position:relative; position:relative;
margin-bottom:1rem;
.team-item-name { .team-item-name {
line-height:3.25rem; line-height:3.25rem;
.team-item-role { .team-item-role {

View File

@ -2,19 +2,22 @@
html { html {
font-family: 'Roboto', sans-serif; font-family: 'Roboto', sans-serif;
font-size: 16px; font-size: 16px;
color: #46535B; } color: #46535B;
}
body { body {
font-size: 16px; font-size: 16px;
padding: 0; padding: 0;
margin: 0; } margin: 0;
}
h1 { h1 {
font-size: 30px; font-size: 30px;
font-style: normal; font-style: normal;
font-weight: 300; font-weight: 300;
line-height: 35px; line-height: 35px;
color: #006CB7; } color: #006CB7;
}
h2 { h2 {
font-size: 18px; font-size: 18px;
@ -22,16 +25,19 @@ h2 {
font-weight: 300; font-weight: 300;
line-height: 21px; line-height: 21px;
text-transform: uppercase; text-transform: uppercase;
color: #006CB7; } color: #006CB7;
}
h3 { h3 {
font-size: 18px; font-size: 18px;
font-style: normal; font-style: normal;
font-weight: 300; font-weight: 300;
line-height: 21px; } line-height: 21px;
}
em { em {
font-weight: 300; } font-weight: 300;
}
.btn { .btn {
border: none; border: none;
@ -43,36 +49,46 @@ em {
font-size: 1.125rem; font-size: 1.125rem;
font-weight: 400; font-weight: 400;
cursor: pointer; cursor: pointer;
transition: opacity 0.3s ease-out; } -webkit-transition: opacity 0.3s ease-out;
.btn:hover { transition: opacity 0.3s ease-out;
opacity: 0.8; } }
.btn:disabled {
cursor: default; .btn:hover {
opacity: 0.5; } opacity: 0.8;
}
.btn:disabled {
cursor: default;
opacity: 0.5;
}
.panel { .panel {
background: #F5F5F5; background: #F5F5F5;
padding: 40px 60px; padding: 40px 60px;
border-radius: 20px; border-radius: 20px;
max-width: 30rem; } max-width: 30rem;
.panel .panel-logo { }
position: absolute;
top: -60px; .panel .panel-logo {
left: 0; position: absolute;
right: 0; top: -60px;
display: block; left: 0;
margin: auto; right: 0;
background: #F5F5F5; display: block;
padding: 20px 30px; margin: auto;
width: 100px; background: #F5F5F5;
border-radius: 100%; padding: 20px 30px;
text-align: center; } width: 100px;
border-radius: 100%;
text-align: center;
}
.line { .line {
background: #C4C4C4; background: #C4C4C4;
height: 2px; height: 2px;
width: 200px; width: 200px;
margin: auto; } margin: auto;
}
.a-right { .a-right {
display: block; display: block;
@ -80,133 +96,189 @@ em {
font-size: 10px; font-size: 10px;
text-decoration: none; text-decoration: none;
color: #006CB7; color: #006CB7;
text-transform: uppercase; } text-transform: uppercase;
}
.alert { .alert {
position: relative; position: relative;
color: #8D3D3D; color: #8D3D3D;
margin-bottom: 2rem; } margin-bottom: 2rem;
.alert.alert-success { }
color: #88B52F; }
.alert img { .alert.alert-success {
position: relative; color: #88B52F;
top: 0.25rem; }
width: 1.8rem; }
.alert p { .alert img {
position: absolute; position: relative;
display: flex; top: 0.25rem;
flex-direction: column; width: 1.8rem;
justify-content: center; }
align-items: center;
height: 2rem; .alert p {
left: 3rem; position: absolute;
top: 0; display: -webkit-box;
margin: 0; display: -ms-flexbox;
text-transform: uppercase; } display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
height: 2rem;
left: 3rem;
top: 0;
margin: 0;
text-transform: uppercase;
}
.submit-alert { .submit-alert {
background: white; background: white;
border: 2px solid #B7DB70; border: 2px solid #B7DB70;
box-sizing: border-box; -webkit-box-sizing: border-box;
border-radius: 8px; } box-sizing: border-box;
.submit-alert .btn { border-radius: 8px;
margin-top: 0.5rem; }
background: #88B52F;
border-radius: 4px; } .submit-alert .btn {
margin-top: 0.5rem;
background: #88B52F;
border-radius: 4px;
}
.form-wrapper { .form-wrapper {
margin-bottom: 1rem; } margin-bottom: 1rem;
.form-wrapper label { }
display: block;
font-weight: normal;
font-size: 0.75rem;
line-height: 0.875rem;
text-transform: uppercase; }
.form-wrapper select {
display: block;
background: #FFFFFF;
border: 1px solid #B6BEC3;
padding: 0.75rem 1rem;
width: 100%; }
.form-wrapper input[type="text"] {
box-sizing: border-box;
display: block;
background: #FFFFFF;
border: 1px solid #B6BEC3;
padding: 0.75rem 1rem;
width: 100%; }
.form-wrapper input[type="radio"] {
float: left;
margin: 0;
margin-right: 0.5rem; }
.form-wrapper .dropzone {
box-sizing: border-box;
padding: 0.5rem;
height: 4.5rem;
background: #E0E6EA; }
.form-wrapper .dropzone .dz-default.dz-message {
box-sizing: border-box;
display: block;
height: 3.5rem;
text-align: center;
border: 2px dashed white; }
.form-wrapper .dropzone .dz-default.dz-message span {
display: inline-block;
background: #006CB7;
border-radius: 6px;
color: white;
padding: 0.5rem 0.75rem;
margin-top: 0.5rem;
cursor: pointer; }
.form-wrapper .dz-preview.dz-file-preview {
position: relative;
background: white;
height: 4.5rem;
margin-top: 1rem; }
.form-wrapper .dz-preview.dz-file-preview .dz-image {
position: absolute;
left: 1rem;
top: 1rem;
background: url(/static/image/file.svg);
background-repeat: no-repeat;
background-position: center;
width: 2rem;
height: 2rem; }
.form-wrapper .dz-preview.dz-file-preview .dz-image img {
display: none; }
.form-wrapper .dz-preview.dz-file-preview .dz-details .dz-filename {
position: absolute;
top: 1.5rem;
left: 4rem;
width: 50%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis; }
.form-wrapper .dz-preview.dz-file-preview .dz-details .dz-size {
position: absolute;
top: 1.5rem;
right: 2.5rem; }
.form-wrapper .dz-preview.dz-file-preview .dz-success-mark, .form-wrapper .dz-preview.dz-file-preview .dz-error-mark {
display: none; }
.form-wrapper .dz-preview.dz-file-preview .dz-progress {
position: absolute;
left: 50%;
top: 1.5rem;
width: 28%;
border-radius: 10px;
overflow: hidden; }
.form-wrapper .dz-preview.dz-file-preview .dz-progress .dz-upload {
height: 20px;
display: inline-block;
background: #006CB7; }
.form-wrapper .dz-preview.dz-file-preview .dz-remove {
position: absolute;
top: 1.5rem;
right: 1rem;
width: 1rem;
height: 1rem;
background: url(/static/image/trash.svg);
background-repeat: no-repeat;
background-position: center; }
/*# sourceMappingURL=form.css.map */ .form-wrapper label {
display: block;
font-weight: normal;
font-size: 0.75rem;
line-height: 0.875rem;
text-transform: uppercase;
}
.form-wrapper select {
display: block;
background: #FFFFFF;
border: 1px solid #B6BEC3;
padding: 0.75rem 1rem;
width: 100%;
}
.form-wrapper input[type="text"] {
-webkit-box-sizing: border-box;
box-sizing: border-box;
display: block;
background: #FFFFFF;
border: 1px solid #B6BEC3;
padding: 0.75rem 1rem;
width: 100%;
}
.form-wrapper input[type="radio"] {
float: left;
margin: 0;
margin-right: 0.5rem;
}
.form-wrapper .dropzone {
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 0.5rem;
height: 4.5rem;
background: #E0E6EA;
}
.form-wrapper .dropzone .dz-default.dz-message {
-webkit-box-sizing: border-box;
box-sizing: border-box;
display: block;
height: 3.5rem;
text-align: center;
border: 2px dashed white;
}
.form-wrapper .dropzone .dz-default.dz-message span {
display: inline-block;
background: #006CB7;
border-radius: 6px;
color: white;
padding: 0.5rem 0.75rem;
margin-top: 0.5rem;
cursor: pointer;
}
.form-wrapper .dz-preview.dz-file-preview {
position: relative;
background: white;
height: 4.5rem;
margin-top: 1rem;
}
.form-wrapper .dz-preview.dz-file-preview .dz-image {
position: absolute;
left: 1rem;
top: 1rem;
background: url(/static/image/file.svg);
background-repeat: no-repeat;
background-position: center;
width: 2rem;
height: 2rem;
}
.form-wrapper .dz-preview.dz-file-preview .dz-image img {
display: none;
}
.form-wrapper .dz-preview.dz-file-preview .dz-details .dz-filename {
position: absolute;
top: 1.5rem;
left: 4rem;
width: 50%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.form-wrapper .dz-preview.dz-file-preview .dz-details .dz-size {
position: absolute;
top: 1.5rem;
right: 2.5rem;
}
.form-wrapper .dz-preview.dz-file-preview .dz-success-mark, .form-wrapper .dz-preview.dz-file-preview .dz-error-mark {
display: none;
}
.form-wrapper .dz-preview.dz-file-preview .dz-progress {
position: absolute;
left: 50%;
top: 1.5rem;
width: 28%;
border-radius: 10px;
overflow: hidden;
}
.form-wrapper .dz-preview.dz-file-preview .dz-progress .dz-upload {
height: 20px;
display: inline-block;
background: #006CB7;
}
.form-wrapper .dz-preview.dz-file-preview .dz-remove {
position: absolute;
top: 1.5rem;
right: 1rem;
width: 1rem;
height: 1rem;
background: url(/static/image/trash.svg);
background-repeat: no-repeat;
background-position: center;
}
/*# sourceMappingURL=form.css.map */

File diff suppressed because one or more lines are too long

View File

@ -2,19 +2,22 @@
html { html {
font-family: 'Roboto', sans-serif; font-family: 'Roboto', sans-serif;
font-size: 16px; font-size: 16px;
color: #46535B; } color: #46535B;
}
body { body {
font-size: 16px; font-size: 16px;
padding: 0; padding: 0;
margin: 0; } margin: 0;
}
h1 { h1 {
font-size: 30px; font-size: 30px;
font-style: normal; font-style: normal;
font-weight: 300; font-weight: 300;
line-height: 35px; line-height: 35px;
color: #006CB7; } color: #006CB7;
}
h2 { h2 {
font-size: 18px; font-size: 18px;
@ -22,16 +25,19 @@ h2 {
font-weight: 300; font-weight: 300;
line-height: 21px; line-height: 21px;
text-transform: uppercase; text-transform: uppercase;
color: #006CB7; } color: #006CB7;
}
h3 { h3 {
font-size: 18px; font-size: 18px;
font-style: normal; font-style: normal;
font-weight: 300; font-weight: 300;
line-height: 21px; } line-height: 21px;
}
em { em {
font-weight: 300; } font-weight: 300;
}
.btn { .btn {
border: none; border: none;
@ -43,36 +49,46 @@ em {
font-size: 1.125rem; font-size: 1.125rem;
font-weight: 400; font-weight: 400;
cursor: pointer; cursor: pointer;
transition: opacity 0.3s ease-out; } -webkit-transition: opacity 0.3s ease-out;
.btn:hover { transition: opacity 0.3s ease-out;
opacity: 0.8; } }
.btn:disabled {
cursor: default; .btn:hover {
opacity: 0.5; } opacity: 0.8;
}
.btn:disabled {
cursor: default;
opacity: 0.5;
}
.panel { .panel {
background: #F5F5F5; background: #F5F5F5;
padding: 40px 60px; padding: 40px 60px;
border-radius: 20px; border-radius: 20px;
max-width: 30rem; } max-width: 30rem;
.panel .panel-logo { }
position: absolute;
top: -60px; .panel .panel-logo {
left: 0; position: absolute;
right: 0; top: -60px;
display: block; left: 0;
margin: auto; right: 0;
background: #F5F5F5; display: block;
padding: 20px 30px; margin: auto;
width: 100px; background: #F5F5F5;
border-radius: 100%; padding: 20px 30px;
text-align: center; } width: 100px;
border-radius: 100%;
text-align: center;
}
.line { .line {
background: #C4C4C4; background: #C4C4C4;
height: 2px; height: 2px;
width: 200px; width: 200px;
margin: auto; } margin: auto;
}
.a-right { .a-right {
display: block; display: block;
@ -80,42 +96,64 @@ em {
font-size: 10px; font-size: 10px;
text-decoration: none; text-decoration: none;
color: #006CB7; color: #006CB7;
text-transform: uppercase; } text-transform: uppercase;
}
.alert { .alert {
position: relative; position: relative;
color: #8D3D3D; color: #8D3D3D;
margin-bottom: 2rem; } margin-bottom: 2rem;
.alert.alert-success { }
color: #88B52F; }
.alert img { .alert.alert-success {
position: relative; color: #88B52F;
top: 0.25rem; }
width: 1.8rem; }
.alert p { .alert img {
position: absolute; position: relative;
display: flex; top: 0.25rem;
flex-direction: column; width: 1.8rem;
justify-content: center; }
align-items: center;
height: 2rem; .alert p {
left: 3rem; position: absolute;
top: 0; display: -webkit-box;
margin: 0; display: -ms-flexbox;
text-transform: uppercase; } display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
height: 2rem;
left: 3rem;
top: 0;
margin: 0;
text-transform: uppercase;
}
.submit-alert { .submit-alert {
background: white; background: white;
border: 2px solid #B7DB70; border: 2px solid #B7DB70;
box-sizing: border-box; -webkit-box-sizing: border-box;
border-radius: 8px; } box-sizing: border-box;
.submit-alert .btn { border-radius: 8px;
margin-top: 0.5rem; }
background: #88B52F;
border-radius: 4px; } .submit-alert .btn {
margin-top: 0.5rem;
background: #88B52F;
border-radius: 4px;
}
body { body {
background: #F5F5F5; } background: #F5F5F5;
}
header { header {
position: fixed; position: fixed;
@ -124,52 +162,69 @@ header {
height: 4rem; height: 4rem;
background: #006CB7; background: #006CB7;
z-index: 1000000; z-index: 1000000;
box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.2); } -webkit-box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.2);
box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.2);
}
header .logo { header .logo {
display: inline-block; display: inline-block;
padding: 0.5rem 1.5rem; } padding: 0.5rem 1.5rem;
header .logo img { }
height: 3rem; }
header .logo img {
height: 3rem;
}
header .menu-items { header .menu-items {
float: right; float: right;
padding: 1.5rem 1.5rem; padding: 1.5rem 1.5rem;
display: inline-block; } display: inline-block;
header .menu-items a { }
margin-left: 2rem;
display: inline-block; header .menu-items a {
color: white; margin-left: 2rem;
text-decoration: none; } display: inline-block;
color: white;
text-decoration: none;
}
.tab-nav { .tab-nav {
margin-top: 2rem; margin-top: 2rem;
border-bottom: 1px solid #848C90; } border-bottom: 1px solid #848C90;
.tab-nav a { }
position: relative;
top: 1px; .tab-nav a {
display: inline-block; position: relative;
font-weight: 500; top: 1px;
text-transform: uppercase; display: inline-block;
font-size: 1.125rem; font-weight: 500;
padding: 0.25rem 2rem; text-transform: uppercase;
text-decoration: none; font-size: 1.125rem;
color: #848C90; padding: 0.25rem 2rem;
transition: color 0.3s ease-out; } text-decoration: none;
.tab-nav a.active, .tab-nav a:hover { color: #848C90;
color: #006CB7; -webkit-transition: color 0.3s ease-out;
border-bottom: 4px solid #006CB7; } transition: color 0.3s ease-out;
}
.tab-nav a.active, .tab-nav a:hover {
color: #006CB7;
border-bottom: 4px solid #006CB7;
}
h1.title { h1.title {
font-weight: 300; font-weight: 300;
font-size: 1.5rem; font-size: 1.5rem;
line-height: 1.75rem; line-height: 1.75rem;
margin: 0; margin: 0;
color: #006CB7; } color: #006CB7;
}
p.subtitle { p.subtitle {
font-size: 14px; font-size: 14px;
line-height: 150%; line-height: 150%;
margin-top: 0.5rem; } margin-top: 0.5rem;
}
/* Style The Dropdown Button */ /* Style The Dropdown Button */
.dropbtn { .dropbtn {
@ -178,17 +233,21 @@ p.subtitle {
border: none; border: none;
cursor: pointer; cursor: pointer;
background: none; background: none;
padding: 0 1rem; } padding: 0 1rem;
.dropbtn img { }
position: relative;
top: 0.75rem; } .dropbtn img {
position: relative;
top: 0.75rem;
}
/* The container <div> - needed to position the dropdown content */ /* The container <div> - needed to position the dropdown content */
.dropdown { .dropdown {
margin-right: 1rem; margin-right: 1rem;
float: right; float: right;
display: inline-block; display: inline-block;
position: relative; } position: relative;
}
/* Dropdown Content (Hidden by Default) */ /* Dropdown Content (Hidden by Default) */
.dropdown-content { .dropdown-content {
@ -197,29 +256,37 @@ p.subtitle {
right: 0; right: 0;
background-color: #f9f9f9; background-color: #f9f9f9;
min-width: 160px; min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1; } box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
}
/* Links inside the dropdown */ /* Links inside the dropdown */
.dropdown-content a { .dropdown-content a {
color: #848C90; color: #848C90;
padding: 0.5rem 1rem; padding: 0.5rem 1rem;
text-decoration: none; text-decoration: none;
display: block; } display: block;
.dropdown-content a:hover { }
background-color: #f1f1f1;
cursor: pointer; } .dropdown-content a:hover {
background-color: #f1f1f1;
cursor: pointer;
}
.dropdown-content hr { .dropdown-content hr {
margin-top: 0; margin-top: 0;
margin-bottom: 0; margin-bottom: 0;
border-top: 1px solid #B6BEC3; } border-top: 1px solid #B6BEC3;
}
/* Show the dropdown menu on hover */ /* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content { .dropdown:hover .dropdown-content {
display: block; } display: block;
}
/* Change the background color of the dropdown button when the dropdown content is shown */ /* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn { .dropdown:hover .dropbtn {
background: rgba(0, 0, 0, 0.2); } background: rgba(0, 0, 0, 0.2);
}
/*# sourceMappingURL=header.css.map */ /*# sourceMappingURL=header.css.map */

View File

@ -1,7 +1,11 @@
{ {
"version": 3, "version": 3,
"mappings": "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", "mappings": "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",
"sources": ["slovenscina-theme.scss","slovenscina-elements.scss","header.scss"], "sources": [
"names": [], "header.scss",
"file": "header.css" "slovenscina-elements.scss",
"slovenscina-theme.scss"
],
"names": [],
"file": "header.css"
} }

View File

@ -2,19 +2,22 @@
html { html {
font-family: 'Roboto', sans-serif; font-family: 'Roboto', sans-serif;
font-size: 16px; font-size: 16px;
color: #46535B; } color: #46535B;
}
body { body {
font-size: 16px; font-size: 16px;
padding: 0; padding: 0;
margin: 0; } margin: 0;
}
h1 { h1 {
font-size: 30px; font-size: 30px;
font-style: normal; font-style: normal;
font-weight: 300; font-weight: 300;
line-height: 35px; line-height: 35px;
color: #006CB7; } color: #006CB7;
}
h2 { h2 {
font-size: 18px; font-size: 18px;
@ -22,16 +25,19 @@ h2 {
font-weight: 300; font-weight: 300;
line-height: 21px; line-height: 21px;
text-transform: uppercase; text-transform: uppercase;
color: #006CB7; } color: #006CB7;
}
h3 { h3 {
font-size: 18px; font-size: 18px;
font-style: normal; font-style: normal;
font-weight: 300; font-weight: 300;
line-height: 21px; } line-height: 21px;
}
em { em {
font-weight: 300; } font-weight: 300;
}
.btn { .btn {
border: none; border: none;
@ -43,36 +49,46 @@ em {
font-size: 1.125rem; font-size: 1.125rem;
font-weight: 400; font-weight: 400;
cursor: pointer; cursor: pointer;
transition: opacity 0.3s ease-out; } -webkit-transition: opacity 0.3s ease-out;
.btn:hover { transition: opacity 0.3s ease-out;
opacity: 0.8; } }
.btn:disabled {
cursor: default; .btn:hover {
opacity: 0.5; } opacity: 0.8;
}
.btn:disabled {
cursor: default;
opacity: 0.5;
}
.panel { .panel {
background: #F5F5F5; background: #F5F5F5;
padding: 40px 60px; padding: 40px 60px;
border-radius: 20px; border-radius: 20px;
max-width: 30rem; } max-width: 30rem;
.panel .panel-logo { }
position: absolute;
top: -60px; .panel .panel-logo {
left: 0; position: absolute;
right: 0; top: -60px;
display: block; left: 0;
margin: auto; right: 0;
background: #F5F5F5; display: block;
padding: 20px 30px; margin: auto;
width: 100px; background: #F5F5F5;
border-radius: 100%; padding: 20px 30px;
text-align: center; } width: 100px;
border-radius: 100%;
text-align: center;
}
.line { .line {
background: #C4C4C4; background: #C4C4C4;
height: 2px; height: 2px;
width: 200px; width: 200px;
margin: auto; } margin: auto;
}
.a-right { .a-right {
display: block; display: block;
@ -80,39 +96,60 @@ em {
font-size: 10px; font-size: 10px;
text-decoration: none; text-decoration: none;
color: #006CB7; color: #006CB7;
text-transform: uppercase; } text-transform: uppercase;
}
.alert { .alert {
position: relative; position: relative;
color: #8D3D3D; color: #8D3D3D;
margin-bottom: 2rem; } margin-bottom: 2rem;
.alert.alert-success { }
color: #88B52F; }
.alert img { .alert.alert-success {
position: relative; color: #88B52F;
top: 0.25rem; }
width: 1.8rem; }
.alert p { .alert img {
position: absolute; position: relative;
display: flex; top: 0.25rem;
flex-direction: column; width: 1.8rem;
justify-content: center; }
align-items: center;
height: 2rem; .alert p {
left: 3rem; position: absolute;
top: 0; display: -webkit-box;
margin: 0; display: -ms-flexbox;
text-transform: uppercase; } display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
height: 2rem;
left: 3rem;
top: 0;
margin: 0;
text-transform: uppercase;
}
.submit-alert { .submit-alert {
background: white; background: white;
border: 2px solid #B7DB70; border: 2px solid #B7DB70;
box-sizing: border-box; -webkit-box-sizing: border-box;
border-radius: 8px; } box-sizing: border-box;
.submit-alert .btn { border-radius: 8px;
margin-top: 0.5rem; }
background: #88B52F;
border-radius: 4px; } .submit-alert .btn {
margin-top: 0.5rem;
background: #88B52F;
border-radius: 4px;
}
.history-item { .history-item {
background: white; background: white;
@ -120,87 +157,127 @@ em {
max-height: 2.875rem; max-height: 2.875rem;
padding: 1rem 1.5rem; padding: 1rem 1.5rem;
position: relative; position: relative;
-webkit-transition: max-height 1s ease-out;
transition: max-height 1s ease-out; transition: max-height 1s ease-out;
cursor: pointer; cursor: pointer;
overflow: hidden; } overflow: hidden;
.history-item .history-item-chevron { }
position: absolute;
bottom: 1rem;
right: 1rem; }
.history-item .history-item-date {
text-transform: uppercase;
display: inline-block;
color: #848C90;
line-height: 1rem;
font-weight: 400;
font-size: 0.875rem; }
.history-item .history-item-uploader {
display: inline-block;
padding-left: 1rem;
margin-left: 1rem;
border-left: 1px solid #848C90;
color: #848C90;
line-height: 1rem;
font-weight: 400;
font-size: 0.875rem; }
.history-item .history-item-filecount {
position: absolute;
top: 1rem;
right: 1rem;
color: #006CB7;
line-height: 1rem;
font-weight: 400;
font-size: 0.875rem; }
.history-item .history-item-desc {
position: absolute;
bottom: 1rem;
font-style: normal;
font-weight: normal;
font-size: 1rem;
line-height: 1.25rem;
color: #46535B; }
.history-item .history-item-desc-full {
display: none;
margin-top: 1rem; }
.history-item .history-item-files-full {
display: none; }
.history-item .history-item-files-full .file-item {
position: relative;
height: 3.125rem;
border-bottom: 1px solid #848C90; }
.history-item .history-item-files-full .file-item:last-child {
border-bottom: none; }
.history-item .history-item-files-full .file-item .file-icon {
position: absolute;
width: 1.5rem;
height: 1.5rem;
left: 0;
top: 1rem; }
.history-item .history-item-files-full .file-item .file-name {
position: absolute;
left: 3rem;
top: 1rem;
color: #46535B;
text-decoration: none;
cursor: pointer; }
.history-item .history-item-files-full .file-item .file-name:hover {
text-decoration: underline; }
.history-item.open {
max-height: 20rem; }
.history-item.open .history-item-date {
display: block; }
.history-item.open .history-item-uploader {
display: block;
padding-left: 0;
margin-left: 0;
border-left: none; }
.history-item.open .history-item-desc {
display: none; }
.history-item.open .history-item-desc-full {
display: block; }
.history-item.open .history-item-files-full {
display: block; }
.history-item.open .history-item-chevron {
transform: rotate(180deg); }
/*# sourceMappingURL=history.css.map */ .history-item .history-item-chevron {
position: absolute;
bottom: 1rem;
right: 1rem;
}
.history-item .history-item-date {
text-transform: uppercase;
display: inline-block;
color: #848C90;
line-height: 1rem;
font-weight: 400;
font-size: 0.875rem;
}
.history-item .history-item-uploader {
display: inline-block;
padding-left: 1rem;
margin-left: 1rem;
border-left: 1px solid #848C90;
color: #848C90;
line-height: 1rem;
font-weight: 400;
font-size: 0.875rem;
}
.history-item .history-item-filecount {
position: absolute;
top: 1rem;
right: 1rem;
color: #006CB7;
line-height: 1rem;
font-weight: 400;
font-size: 0.875rem;
}
.history-item .history-item-desc {
position: absolute;
bottom: 1rem;
font-style: normal;
font-weight: normal;
font-size: 1rem;
line-height: 1.25rem;
color: #46535B;
}
.history-item .history-item-desc-full {
display: none;
margin-top: 1rem;
}
.history-item .history-item-files-full {
display: none;
}
.history-item .history-item-files-full .file-item {
position: relative;
height: 3.125rem;
border-bottom: 1px solid #848C90;
}
.history-item .history-item-files-full .file-item:last-child {
border-bottom: none;
}
.history-item .history-item-files-full .file-item .file-icon {
position: absolute;
width: 1.5rem;
height: 1.5rem;
left: 0;
top: 1rem;
}
.history-item .history-item-files-full .file-item .file-name {
position: absolute;
left: 3rem;
top: 1rem;
color: #46535B;
text-decoration: none;
cursor: pointer;
}
.history-item .history-item-files-full .file-item .file-name:hover {
text-decoration: underline;
}
.history-item.open {
max-height: 20rem;
}
.history-item.open .history-item-date {
display: block;
}
.history-item.open .history-item-uploader {
display: block;
padding-left: 0;
margin-left: 0;
border-left: none;
}
.history-item.open .history-item-desc {
display: none;
}
.history-item.open .history-item-desc-full {
display: block;
}
.history-item.open .history-item-files-full {
display: block;
}
.history-item.open .history-item-chevron {
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
/*# sourceMappingURL=history.css.map */

View File

@ -1,7 +1,11 @@
{ {
"version": 3, "version": 3,
"mappings": "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", "mappings": "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",
"sources": ["slovenscina-theme.scss","slovenscina-elements.scss","history.scss"], "sources": [
"names": [], "history.scss",
"file": "history.css" "slovenscina-elements.scss",
"slovenscina-theme.scss"
],
"names": [],
"file": "history.css"
} }

View File

@ -2,19 +2,22 @@
html { html {
font-family: 'Roboto', sans-serif; font-family: 'Roboto', sans-serif;
font-size: 16px; font-size: 16px;
color: #46535B; } color: #46535B;
}
body { body {
font-size: 16px; font-size: 16px;
padding: 0; padding: 0;
margin: 0; } margin: 0;
}
h1 { h1 {
font-size: 30px; font-size: 30px;
font-style: normal; font-style: normal;
font-weight: 300; font-weight: 300;
line-height: 35px; line-height: 35px;
color: #006CB7; } color: #006CB7;
}
h2 { h2 {
font-size: 18px; font-size: 18px;
@ -22,16 +25,19 @@ h2 {
font-weight: 300; font-weight: 300;
line-height: 21px; line-height: 21px;
text-transform: uppercase; text-transform: uppercase;
color: #006CB7; } color: #006CB7;
}
h3 { h3 {
font-size: 18px; font-size: 18px;
font-style: normal; font-style: normal;
font-weight: 300; font-weight: 300;
line-height: 21px; } line-height: 21px;
}
em { em {
font-weight: 300; } font-weight: 300;
}
.btn { .btn {
border: none; border: none;
@ -43,36 +49,46 @@ em {
font-size: 1.125rem; font-size: 1.125rem;
font-weight: 400; font-weight: 400;
cursor: pointer; cursor: pointer;
transition: opacity 0.3s ease-out; } -webkit-transition: opacity 0.3s ease-out;
.btn:hover { transition: opacity 0.3s ease-out;
opacity: 0.8; } }
.btn:disabled {
cursor: default; .btn:hover {
opacity: 0.5; } opacity: 0.8;
}
.btn:disabled {
cursor: default;
opacity: 0.5;
}
.panel { .panel {
background: #F5F5F5; background: #F5F5F5;
padding: 40px 60px; padding: 40px 60px;
border-radius: 20px; border-radius: 20px;
max-width: 30rem; } max-width: 30rem;
.panel .panel-logo { }
position: absolute;
top: -60px; .panel .panel-logo {
left: 0; position: absolute;
right: 0; top: -60px;
display: block; left: 0;
margin: auto; right: 0;
background: #F5F5F5; display: block;
padding: 20px 30px; margin: auto;
width: 100px; background: #F5F5F5;
border-radius: 100%; padding: 20px 30px;
text-align: center; } width: 100px;
border-radius: 100%;
text-align: center;
}
.line { .line {
background: #C4C4C4; background: #C4C4C4;
height: 2px; height: 2px;
width: 200px; width: 200px;
margin: auto; } margin: auto;
}
.a-right { .a-right {
display: block; display: block;
@ -80,119 +96,164 @@ em {
font-size: 10px; font-size: 10px;
text-decoration: none; text-decoration: none;
color: #006CB7; color: #006CB7;
text-transform: uppercase; } text-transform: uppercase;
}
.alert { .alert {
position: relative; position: relative;
color: #8D3D3D; color: #8D3D3D;
margin-bottom: 2rem; } margin-bottom: 2rem;
.alert.alert-success { }
color: #88B52F; }
.alert img { .alert.alert-success {
position: relative; color: #88B52F;
top: 0.25rem; }
width: 1.8rem; }
.alert p { .alert img {
position: absolute; position: relative;
display: flex; top: 0.25rem;
flex-direction: column; width: 1.8rem;
justify-content: center; }
align-items: center;
height: 2rem; .alert p {
left: 3rem; position: absolute;
top: 0; display: -webkit-box;
margin: 0; display: -ms-flexbox;
text-transform: uppercase; } display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
height: 2rem;
left: 3rem;
top: 0;
margin: 0;
text-transform: uppercase;
}
.submit-alert { .submit-alert {
background: white; background: white;
border: 2px solid #B7DB70; border: 2px solid #B7DB70;
box-sizing: border-box; -webkit-box-sizing: border-box;
border-radius: 8px; } box-sizing: border-box;
.submit-alert .btn { border-radius: 8px;
margin-top: 0.5rem; }
background: #88B52F;
border-radius: 4px; } .submit-alert .btn {
margin-top: 0.5rem;
background: #88B52F;
border-radius: 4px;
}
.background { .background {
background: #848C90; background: #848C90;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover; background-size: cover;
overflow-y: scroll; overflow-y: scroll;
height: 200vh; height: 200vh;
width: 100%; } width: 100%;
}
.login-panel { .login-panel {
position: absolute; position: absolute;
width: 50%; width: 50%;
left: 25%; left: 25%;
top: 100px; top: 100px;
box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.25); } -webkit-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.25);
box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.25);
}
.register-button { .register-button {
position: relative; position: relative;
margin-top: 2rem; margin-top: 2rem;
display: block; display: block;
text-decoration: none; text-decoration: none;
color: #848C90; } color: #848C90;
.register-button img { }
width: 2rem; }
.register-button h3 { .register-button img {
position: absolute; width: 2rem;
left: 3rem; }
top: 0;
margin: 0; } .register-button h3 {
.register-button p { position: absolute;
position: absolute; left: 3rem;
left: 3rem; top: 0;
bottom: 0; margin: 0;
margin: 0; }
font-size: 0.875rem;
font-weight: 300; } .register-button p {
position: absolute;
left: 3rem;
bottom: 0;
margin: 0;
font-size: 0.875rem;
font-weight: 300;
}
.input-wrapper { .input-wrapper {
position: relative; position: relative;
height: 4rem; } height: 4rem;
.input-wrapper .input-icon { }
position: absolute;
left: 0; .input-wrapper .input-icon {
top: 0.5rem; position: absolute;
display: block; left: 0;
width: 1.5rem; } top: 0.5rem;
.input-wrapper .input-floating-label { display: block;
position: absolute; width: 1.5rem;
left: 3rem; }
right: 0;
display: block; } .input-wrapper .input-floating-label {
.input-wrapper .input-floating-label input, .input-wrapper .input-floating-label select { position: absolute;
padding: 0.25rem 0; left: 3rem;
background: none; right: 0;
border: none; display: block;
display: block; }
width: 100%;
border-bottom: 2px solid #C4C4C4; } .input-wrapper .input-floating-label input, .input-wrapper .input-floating-label select {
.input-wrapper .input-floating-label input:focus, .input-wrapper .input-floating-label select:focus { padding: 0.25rem 0;
outline: none; } background: none;
.input-wrapper .input-floating-label label { border: none;
font-size: 10px; display: block;
color: #46535B; } width: 100%;
.input-wrapper .input-floating-label label.input-hint { border-bottom: 2px solid #C4C4C4;
color: #848C90; } }
.input-wrapper .input-floating-label input:focus, .input-wrapper .input-floating-label select:focus {
outline: none;
}
.input-wrapper .input-floating-label label {
font-size: 10px;
color: #46535B;
}
.input-wrapper .input-floating-label label.input-hint {
color: #848C90;
}
.back-to-login { .back-to-login {
position: relative; position: relative;
height: 2rem; } height: 2rem;
.back-to-login img { }
position: absolute;
top: 0.25rem;
left: 0.5rem; }
.back-to-login a {
position: relative;
top: 0;
left: 3rem;
text-decoration: none;
color: #46535B; }
/*# sourceMappingURL=login-styles.css.map */ .back-to-login img {
position: absolute;
top: 0.25rem;
left: 0.5rem;
}
.back-to-login a {
position: relative;
top: 0;
left: 3rem;
text-decoration: none;
color: #46535B;
}
/*# sourceMappingURL=login-styles.css.map */

View File

@ -1,7 +1,11 @@
{ {
"version": 3, "version": 3,
"mappings": "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", "mappings": "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",
"sources": ["slovenscina-theme.scss","slovenscina-elements.scss","login-styles.scss"], "sources": [
"names": [], "login-styles.scss",
"file": "login-styles.css" "slovenscina-elements.scss",
"slovenscina-theme.scss"
],
"names": [],
"file": "login-styles.css"
} }

View File

@ -2,19 +2,22 @@
html { html {
font-family: 'Roboto', sans-serif; font-family: 'Roboto', sans-serif;
font-size: 16px; font-size: 16px;
color: #46535B; } color: #46535B;
}
body { body {
font-size: 16px; font-size: 16px;
padding: 0; padding: 0;
margin: 0; } margin: 0;
}
h1 { h1 {
font-size: 30px; font-size: 30px;
font-style: normal; font-style: normal;
font-weight: 300; font-weight: 300;
line-height: 35px; line-height: 35px;
color: #006CB7; } color: #006CB7;
}
h2 { h2 {
font-size: 18px; font-size: 18px;
@ -22,16 +25,19 @@ h2 {
font-weight: 300; font-weight: 300;
line-height: 21px; line-height: 21px;
text-transform: uppercase; text-transform: uppercase;
color: #006CB7; } color: #006CB7;
}
h3 { h3 {
font-size: 18px; font-size: 18px;
font-style: normal; font-style: normal;
font-weight: 300; font-weight: 300;
line-height: 21px; } line-height: 21px;
}
em { em {
font-weight: 300; } font-weight: 300;
}
.btn { .btn {
border: none; border: none;
@ -43,36 +49,46 @@ em {
font-size: 1.125rem; font-size: 1.125rem;
font-weight: 400; font-weight: 400;
cursor: pointer; cursor: pointer;
transition: opacity 0.3s ease-out; } -webkit-transition: opacity 0.3s ease-out;
.btn:hover { transition: opacity 0.3s ease-out;
opacity: 0.8; } }
.btn:disabled {
cursor: default; .btn:hover {
opacity: 0.5; } opacity: 0.8;
}
.btn:disabled {
cursor: default;
opacity: 0.5;
}
.panel { .panel {
background: #F5F5F5; background: #F5F5F5;
padding: 40px 60px; padding: 40px 60px;
border-radius: 20px; border-radius: 20px;
max-width: 30rem; } max-width: 30rem;
.panel .panel-logo { }
position: absolute;
top: -60px; .panel .panel-logo {
left: 0; position: absolute;
right: 0; top: -60px;
display: block; left: 0;
margin: auto; right: 0;
background: #F5F5F5; display: block;
padding: 20px 30px; margin: auto;
width: 100px; background: #F5F5F5;
border-radius: 100%; padding: 20px 30px;
text-align: center; } width: 100px;
border-radius: 100%;
text-align: center;
}
.line { .line {
background: #C4C4C4; background: #C4C4C4;
height: 2px; height: 2px;
width: 200px; width: 200px;
margin: auto; } margin: auto;
}
.a-right { .a-right {
display: block; display: block;
@ -80,38 +96,58 @@ em {
font-size: 10px; font-size: 10px;
text-decoration: none; text-decoration: none;
color: #006CB7; color: #006CB7;
text-transform: uppercase; } text-transform: uppercase;
}
.alert { .alert {
position: relative; position: relative;
color: #8D3D3D; color: #8D3D3D;
margin-bottom: 2rem; } margin-bottom: 2rem;
.alert.alert-success { }
color: #88B52F; }
.alert img { .alert.alert-success {
position: relative; color: #88B52F;
top: 0.25rem; }
width: 1.8rem; }
.alert p { .alert img {
position: absolute; position: relative;
display: flex; top: 0.25rem;
flex-direction: column; width: 1.8rem;
justify-content: center; }
align-items: center;
height: 2rem; .alert p {
left: 3rem; position: absolute;
top: 0; display: -webkit-box;
margin: 0; display: -ms-flexbox;
text-transform: uppercase; } display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
height: 2rem;
left: 3rem;
top: 0;
margin: 0;
text-transform: uppercase;
}
.submit-alert { .submit-alert {
background: white; background: white;
border: 2px solid #B7DB70; border: 2px solid #B7DB70;
box-sizing: border-box; -webkit-box-sizing: border-box;
border-radius: 8px; } box-sizing: border-box;
.submit-alert .btn { border-radius: 8px;
margin-top: 0.5rem; }
background: #88B52F;
border-radius: 4px; }
/*# sourceMappingURL=manage-institution.css.map */ .submit-alert .btn {
margin-top: 0.5rem;
background: #88B52F;
border-radius: 4px;
}
/*# sourceMappingURL=manage-institution.css.map */

View File

@ -1,7 +1,11 @@
{ {
"version": 3, "version": 3,
"mappings": "AAAQ,+IAAuI;AAa/I,IAAK;EACH,WAAW,EAAE,oBAAoB;EACjC,SAAS,EAAC,IAAI;EACd,KAAK,EAZC,OAAO;;AAef,IAAK;EACH,SAAS,EAAC,IAAI;EACd,OAAO,EAAC,CAAC;EACT,MAAM,EAAC,CAAC;;ACpBV,EAAG;EACD,SAAS,EAAE,IAAI;EACf,UAAU,EAAE,MAAM;EAClB,WAAW,EAAE,GAAG;EAChB,WAAW,EAAE,IAAI;EACjB,KAAK,EDLA,OAAO;;ACOd,EAAG;EACD,SAAS,EAAE,IAAI;EACf,UAAU,EAAE,MAAM;EAClB,WAAW,EAAE,GAAG;EAChB,WAAW,EAAE,IAAI;EACjB,cAAc,EAAE,SAAS;EACzB,KAAK,EDbA,OAAO;;ACgBd,EAAG;EACD,SAAS,EAAE,IAAI;EACf,UAAU,EAAE,MAAM;EAClB,WAAW,EAAE,GAAG;EAChB,WAAW,EAAE,IAAI;;AAGnB,EAAG;EACD,WAAW,EAAE,GAAG;;AAGlB,IAAK;EACH,MAAM,EAAC,IAAI;EACX,WAAW,EAAE,MAAM;EACnB,OAAO,EAAE,QAAQ;EACjB,KAAK,EAAC,KAAK;EACX,UAAU,EDhCL,OAAO;ECiCZ,aAAa,EAAE,IAAI;EACnB,SAAS,EAAE,QAAQ;EACnB,WAAW,EAAE,GAAG;EAChB,MAAM,EAAE,OAAO;EACf,UAAU,EAAE,qBAAqB;EACjC,UAAQ;IACN,OAAO,EAAE,GAAG;EAEd,aAAW;IACT,MAAM,EAAC,OAAO;IACd,OAAO,EAAC,GAAG;;AAMf,MAAO;EACL,UAAU,ED5CJ,OAAO;EC6Cb,OAAO,EAAE,SAAS;EAClB,aAAa,EAAE,IAAI;EACnB,SAAS,EAAC,KAAK;EACf,kBAAY;IACV,QAAQ,EAAC,QAAQ;IACjB,GAAG,EAAE,KAAK;IACV,IAAI,EAAC,CAAC;IACN,KAAK,EAAC,CAAC;IACP,OAAO,EAAC,KAAK;IACb,MAAM,EAAC,IAAI;IACX,UAAU,EDvDN,OAAO;ICwDX,OAAO,EAAC,SAAS;IACjB,KAAK,EAAE,KAAK;IACZ,aAAa,EAAE,IAAI;IACnB,UAAU,EAAE,MAAM;;AAKtB,KAAM;EACJ,UAAU,EDpEL,OAAO;ECqEZ,MAAM,EAAC,GAAG;EACV,KAAK,EAAC,KAAK;EACX,MAAM,EAAE,IAAI;;AAGd,QAAS;EACP,OAAO,EAAC,KAAK;EACb,UAAU,EAAE,KAAK;EACjB,SAAS,EAAC,IAAI;EACd,eAAe,EAAE,IAAI;EACrB,KAAK,EDlFA,OAAO;ECmFZ,cAAc,EAAE,SAAS;;AAG3B,MAAO;EACL,QAAQ,EAAC,QAAQ;EACjB,KAAK,EDvFD,OAAO;ECwFX,aAAa,EAAC,IAAI;EAClB,oBAAgB;IACd,KAAK,EDnFD,OAAO;ECqFb,UAAI;IACF,QAAQ,EAAC,QAAQ;IACjB,GAAG,EAAC,OAAO;IACX,KAAK,EAAC,MAAM;EAEd,QAAE;IACA,QAAQ,EAAE,QAAQ;IAClB,OAAO,EAAE,IAAI;IACb,cAAc,EAAE,MAAM;IACtB,eAAe,EAAE,MAAM;IACvB,WAAW,EAAE,MAAM;IACnB,MAAM,EAAC,IAAI;IACX,IAAI,EAAC,IAAI;IACT,GAAG,EAAE,CAAC;IACN,MAAM,EAAC,CAAC;IACR,cAAc,EAAE,SAAS;;AAI7B,aAAc;EACZ,UAAU,EAAC,KAAK;EAChB,MAAM,EAAE,iBAAsB;EAC9B,UAAU,EAAE,UAAU;EACtB,aAAa,EAAE,GAAG;EAClB,kBAAK;IACH,UAAU,EAAC,MAAM;IACjB,UAAU,ED/GN,OAAO;ICgHX,aAAa,EAAE,GAAG", "mappings": "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",
"sources": ["slovenscina-theme.scss","slovenscina-elements.scss"], "sources": [
"names": [], "manage-institution.scss",
"file": "manage-institution.css" "slovenscina-elements.scss",
"slovenscina-theme.scss"
],
"names": [],
"file": "manage-institution.css"
} }

View File

@ -1,31 +1,42 @@
.hidden-sm { .hidden-sm {
display: none; } display: none;
}
.container { .container {
width: 90%; width: 90%;
margin-left: auto; margin-left: auto;
margin-right: auto; } margin-right: auto;
@media only screen and (min-width: 33.75em) { }
.container {
width: 80%; } } @media only screen and (min-width: 33.75em) {
@media only screen and (min-width: 60em) { .container {
.container { width: 80%;
width: 90%; }
max-width: 80rem; } } }
@media only screen and (min-width: 60em) {
.container {
width: 90%;
max-width: 80rem;
}
}
.row { .row {
position: relative; position: relative;
width: 100%; } width: 100%;
}
.row [class^="col"] { .row [class^="col"] {
float: left; float: left;
margin: 0.5rem 2%; margin: 0.5rem 2%;
min-height: 0.125rem; } min-height: 0.125rem;
}
.row::after { .row::after {
content: ""; content: "";
display: table; display: table;
clear: both; } clear: both;
}
.col-1, .col-1,
.col-2, .col-2,
@ -39,82 +50,96 @@
.col-10, .col-10,
.col-11, .col-11,
.col-12 { .col-12 {
width: 96%; } width: 96%;
}
.col-1-sm { .col-1-sm {
width: 4.3333333333%; } width: 4.33333%;
}
.col-2-sm { .col-2-sm {
width: 12.6666666667%; } width: 12.66667%;
}
.col-3-sm { .col-3-sm {
width: 21%; } width: 21%;
}
.col-4-sm { .col-4-sm {
width: 29.3333333333%; } width: 29.33333%;
}
.col-5-sm { .col-5-sm {
width: 37.6666666667%; } width: 37.66667%;
}
.col-6-sm { .col-6-sm {
width: 46%; } width: 46%;
}
.col-7-sm { .col-7-sm {
width: 54.3333333333%; } width: 54.33333%;
}
.col-8-sm { .col-8-sm {
width: 62.6666666667%; } width: 62.66667%;
}
.col-9-sm { .col-9-sm {
width: 71%; } width: 71%;
}
.col-10-sm { .col-10-sm {
width: 79.3333333333%; } width: 79.33333%;
}
.col-11-sm { .col-11-sm {
width: 87.6666666667%; } width: 87.66667%;
}
.col-12-sm { .col-12-sm {
width: 96%; } width: 96%;
}
@media only screen and (min-width: 45em) { @media only screen and (min-width: 45em) {
.col-1 { .col-1 {
width: 4.3333333333%; } width: 4.33333%;
}
.col-2 { .col-2 {
width: 12.6666666667%; } width: 12.66667%;
}
.col-3 { .col-3 {
width: 21%; } width: 21%;
}
.col-4 { .col-4 {
width: 29.3333333333%; } width: 29.33333%;
}
.col-5 { .col-5 {
width: 37.6666666667%; } width: 37.66667%;
}
.col-6 { .col-6 {
width: 46%; } width: 46%;
}
.col-7 { .col-7 {
width: 54.3333333333%; } width: 54.33333%;
}
.col-8 { .col-8 {
width: 62.6666666667%; } width: 62.66667%;
}
.col-9 { .col-9 {
width: 71%; } width: 71%;
}
.col-10 { .col-10 {
width: 79.3333333333%; } width: 79.33333%;
}
.col-11 { .col-11 {
width: 87.6666666667%; } width: 87.66667%;
}
.col-12 { .col-12 {
width: 96%; } width: 96%;
}
.hidden-sm { .hidden-sm {
display: block; } } display: block;
}
/*# sourceMappingURL=simple-grid.css.map */ }
/*# sourceMappingURL=simple-grid.css.map */

View File

@ -1,7 +1,9 @@
{ {
"version": 3, "version": 3,
"mappings": "AACA,UAAW;EACT,OAAO,EAAE,IAAI;;AAWf,UAAW;EACT,KAAK,EAAE,GAAG;EACV,WAAW,EAAE,IAAI;EACjB,YAAY,EAAE,IAAI;EAElB,2CAAsD;IALxD,UAAW;MAMP,KAAK,EAAE,GAAG;EAGZ,wCAAsD;IATxD,UAAW;MAUP,KAAK,EAAE,GAAG;MACV,SAAS,EAAE,KAAK;;AAIpB,IAAK;EACH,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,IAAI;;AAGb,mBAAoB;EAClB,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,SAAS;EACjB,UAAU,EAAE,QAAQ;;AAGtB,WAAY;EACV,OAAO,EAAE,EAAE;EACX,OAAO,EAAE,KAAK;EACd,KAAK,EAAE,IAAI;;AAGb;;;;;;;;;;;OAWQ;EACN,KAAK,EAlDC,GAAG;;AAqDX,SAAU;EAAE,KAAK,EAAC,aAAmC;;AACrD,SAAU;EAAE,KAAK,EAAE,cAAkC;;AACrD,SAAU;EAAE,KAAK,EAAE,GAAiC;;AACpD,SAAU;EAAE,KAAK,EAAE,cAAiC;;AACpD,SAAU;EAAE,KAAK,EAAE,cAAwC;;AAC3D,SAAU;EAAE,KAAK,EAAE,GAAiC;;AACpD,SAAU;EAAE,KAAK,EAAE,cAAwC;;AAC3D,SAAU;EAAE,KAAK,EAAE,cAAwC;;AAC3D,SAAU;EAAE,KAAK,EAAE,GAAwC;;AAC3D,UAAW;EAAE,KAAK,EAAE,cAAyC;;AAC7D,UAAW;EAAE,KAAK,EAAE,cAAyC;;AAC7D,UAAW;EAAE,KAAK,EAhEV,GAAG;;AAkEX,wCAAoD;EAClD,MAAO;IAAE,KAAK,EAAC,aAAmC;;EAClD,MAAO;IAAE,KAAK,EAAE,cAAkC;;EAClD,MAAO;IAAE,KAAK,EAAE,GAAiC;;EACjD,MAAO;IAAE,KAAK,EAAE,cAAiC;;EACjD,MAAO;IAAE,KAAK,EAAE,cAAwC;;EACxD,MAAO;IAAE,KAAK,EAAE,GAAiC;;EACjD,MAAO;IAAE,KAAK,EAAE,cAAwC;;EACxD,MAAO;IAAE,KAAK,EAAE,cAAwC;;EACxD,MAAO;IAAE,KAAK,EAAE,GAAwC;;EACxD,OAAQ;IAAE,KAAK,EAAE,cAAyC;;EAC1D,OAAQ;IAAE,KAAK,EAAE,cAAyC;;EAC1D,OAAQ;IAAE,KAAK,EA9ET,GAAG;;EAgFT,UAAW;IACT,OAAO,EAAE,KAAK", "mappings": "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",
"sources": ["simple-grid.scss"], "sources": [
"names": [], "simple-grid.scss"
"file": "simple-grid.css" ],
"names": [],
"file": "simple-grid.css"
} }

View File

@ -2,19 +2,22 @@
html { html {
font-family: 'Roboto', sans-serif; font-family: 'Roboto', sans-serif;
font-size: 16px; font-size: 16px;
color: #46535B; } color: #46535B;
}
body { body {
font-size: 16px; font-size: 16px;
padding: 0; padding: 0;
margin: 0; } margin: 0;
}
h1 { h1 {
font-size: 30px; font-size: 30px;
font-style: normal; font-style: normal;
font-weight: 300; font-weight: 300;
line-height: 35px; line-height: 35px;
color: #006CB7; } color: #006CB7;
}
h2 { h2 {
font-size: 18px; font-size: 18px;
@ -22,16 +25,19 @@ h2 {
font-weight: 300; font-weight: 300;
line-height: 21px; line-height: 21px;
text-transform: uppercase; text-transform: uppercase;
color: #006CB7; } color: #006CB7;
}
h3 { h3 {
font-size: 18px; font-size: 18px;
font-style: normal; font-style: normal;
font-weight: 300; font-weight: 300;
line-height: 21px; } line-height: 21px;
}
em { em {
font-weight: 300; } font-weight: 300;
}
.btn { .btn {
border: none; border: none;
@ -43,36 +49,46 @@ em {
font-size: 1.125rem; font-size: 1.125rem;
font-weight: 400; font-weight: 400;
cursor: pointer; cursor: pointer;
transition: opacity 0.3s ease-out; } -webkit-transition: opacity 0.3s ease-out;
.btn:hover { transition: opacity 0.3s ease-out;
opacity: 0.8; } }
.btn:disabled {
cursor: default; .btn:hover {
opacity: 0.5; } opacity: 0.8;
}
.btn:disabled {
cursor: default;
opacity: 0.5;
}
.panel { .panel {
background: #F5F5F5; background: #F5F5F5;
padding: 40px 60px; padding: 40px 60px;
border-radius: 20px; border-radius: 20px;
max-width: 30rem; } max-width: 30rem;
.panel .panel-logo { }
position: absolute;
top: -60px; .panel .panel-logo {
left: 0; position: absolute;
right: 0; top: -60px;
display: block; left: 0;
margin: auto; right: 0;
background: #F5F5F5; display: block;
padding: 20px 30px; margin: auto;
width: 100px; background: #F5F5F5;
border-radius: 100%; padding: 20px 30px;
text-align: center; } width: 100px;
border-radius: 100%;
text-align: center;
}
.line { .line {
background: #C4C4C4; background: #C4C4C4;
height: 2px; height: 2px;
width: 200px; width: 200px;
margin: auto; } margin: auto;
}
.a-right { .a-right {
display: block; display: block;
@ -80,65 +96,97 @@ em {
font-size: 10px; font-size: 10px;
text-decoration: none; text-decoration: none;
color: #006CB7; color: #006CB7;
text-transform: uppercase; } text-transform: uppercase;
}
.alert { .alert {
position: relative; position: relative;
color: #8D3D3D; color: #8D3D3D;
margin-bottom: 2rem; } margin-bottom: 2rem;
.alert.alert-success { }
color: #88B52F; }
.alert img { .alert.alert-success {
position: relative; color: #88B52F;
top: 0.25rem; }
width: 1.8rem; }
.alert p { .alert img {
position: absolute; position: relative;
display: flex; top: 0.25rem;
flex-direction: column; width: 1.8rem;
justify-content: center; }
align-items: center;
height: 2rem; .alert p {
left: 3rem; position: absolute;
top: 0; display: -webkit-box;
margin: 0; display: -ms-flexbox;
text-transform: uppercase; } display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
height: 2rem;
left: 3rem;
top: 0;
margin: 0;
text-transform: uppercase;
}
.submit-alert { .submit-alert {
background: white; background: white;
border: 2px solid #B7DB70; border: 2px solid #B7DB70;
box-sizing: border-box; -webkit-box-sizing: border-box;
border-radius: 8px; } box-sizing: border-box;
.submit-alert .btn { border-radius: 8px;
margin-top: 0.5rem; }
background: #88B52F;
border-radius: 4px; } .submit-alert .btn {
margin-top: 0.5rem;
background: #88B52F;
border-radius: 4px;
}
.tableFixHead { .tableFixHead {
overflow-y: scroll; overflow-y: scroll;
max-height: 306px; } max-height: 306px;
}
.tableFixHead thead th { .tableFixHead thead th {
position: -webkit-sticky;
position: sticky; position: sticky;
top: 0; } top: 0;
}
table { table {
border-collapse: collapse; border-collapse: collapse;
width: 100%; } width: 100%;
table th, table td { }
padding: 8px 16px;
border: 1px solid #ccc; }
table th {
background: #eee; }
table input[type=submit], table a {
font-size: 0.8rem;
background: none;
outline: none;
border: none;
cursor: pointer;
text-decoration: none;
color: #006CB7; }
table input[type=submit]:hover, table a:hover {
text-decoration: underline; }
/*# sourceMappingURL=slovenscina-admin.css.map */ table th, table td {
padding: 8px 16px;
border: 1px solid #ccc;
}
table th {
background: #eee;
}
table input[type=submit], table a {
font-size: 0.8rem;
background: none;
outline: none;
border: none;
cursor: pointer;
text-decoration: none;
color: #006CB7;
}
table input[type=submit]:hover, table a:hover {
text-decoration: underline;
}
/*# sourceMappingURL=slovenscina-admin.css.map */

View File

@ -1,7 +1,11 @@
{ {
"version": 3, "version": 3,
"mappings": "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", "mappings": "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",
"sources": ["slovenscina-theme.scss","slovenscina-elements.scss","slovenscina-admin.scss"], "sources": [
"names": [], "slovenscina-admin.scss",
"file": "slovenscina-admin.css" "slovenscina-elements.scss",
"slovenscina-theme.scss"
],
"names": [],
"file": "slovenscina-admin.css"
} }

View File

@ -1,8 +1,153 @@
@import url(https://fonts.googleapis.com/css?family=Roboto:400,400italic,500,500italic,700,700italic,900,900italic,300italic,300,100italic,100);
html { html {
font-family: 'Roboto', sans-serif; font-family: 'Roboto', sans-serif;
color: #46535B; } font-size: 16px;
color: #46535B;
}
body {
font-size: 16px;
padding: 0;
margin: 0;
}
h1 {
font-size: 30px;
font-style: normal;
font-weight: 300;
line-height: 35px;
color: #006CB7;
}
h2 {
font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: 21px;
text-transform: uppercase;
color: #006CB7;
}
h3 {
font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: 21px;
}
em {
font-weight: 300;
}
.btn {
border: none;
line-height: 2.5rem;
padding: 0 2.5rem;
color: white;
background: #006CB7;
border-radius: 20px;
font-size: 1.125rem;
font-weight: 400;
cursor: pointer;
-webkit-transition: opacity 0.3s ease-out;
transition: opacity 0.3s ease-out;
}
.btn:hover {
opacity: 0.8;
}
.btn:disabled {
cursor: default;
opacity: 0.5;
}
.panel { .panel {
background: #F5F5F5; } background: #F5F5F5;
padding: 40px 60px;
border-radius: 20px;
max-width: 30rem;
}
/*# sourceMappingURL=slovenscina-elments.css.map */ .panel .panel-logo {
position: absolute;
top: -60px;
left: 0;
right: 0;
display: block;
margin: auto;
background: #F5F5F5;
padding: 20px 30px;
width: 100px;
border-radius: 100%;
text-align: center;
}
.line {
background: #C4C4C4;
height: 2px;
width: 200px;
margin: auto;
}
.a-right {
display: block;
text-align: right;
font-size: 10px;
text-decoration: none;
color: #006CB7;
text-transform: uppercase;
}
.alert {
position: relative;
color: #8D3D3D;
margin-bottom: 2rem;
}
.alert.alert-success {
color: #88B52F;
}
.alert img {
position: relative;
top: 0.25rem;
width: 1.8rem;
}
.alert p {
position: absolute;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
height: 2rem;
left: 3rem;
top: 0;
margin: 0;
text-transform: uppercase;
}
.submit-alert {
background: white;
border: 2px solid #B7DB70;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-radius: 8px;
}
.submit-alert .btn {
margin-top: 0.5rem;
background: #88B52F;
border-radius: 4px;
}
/*# sourceMappingURL=slovenscina-elements.css.map */

View File

@ -1,7 +1,10 @@
{ {
"version": 3, "version": 3,
"mappings": "AAMA,IAAK;EACH,WAAW,EAAE,oBAAoB;EACjC,KAAK,EANC,OAAO;;ACAf,MAAO;EACL,UAAU,EDCJ,OAAO", "mappings": "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",
"sources": ["slovenscina-theme.scss","slovenscina-elments.scss"], "sources": [
"names": [], "slovenscina-elements.scss",
"file": "slovenscina-elments.css" "slovenscina-theme.scss"
],
"names": [],
"file": "slovenscina-elements.css"
} }

View File

@ -1,5 +1,13 @@
@import url(https://fonts.googleapis.com/css?family=Roboto:400,400italic,500,500italic,700,700italic,900,900italic,300italic,300,100italic,100);
html { html {
font-family: 'Roboto', sans-serif; font-family: 'Roboto', sans-serif;
color: #46535B; } font-size: 16px;
color: #46535B;
}
/*# sourceMappingURL=slovenscina-theme.css.map */ body {
font-size: 16px;
padding: 0;
margin: 0;
}
/*# sourceMappingURL=slovenscina-theme.css.map */

View File

@ -1,7 +1,9 @@
{ {
"version": 3, "version": 3,
"mappings": "AAMA,IAAK;EACH,WAAW,EAAE,oBAAoB;EACjC,KAAK,EANC,OAAO", "mappings": "AAAA,OAAO,CAAC,uIAAI;AAaZ,AAAA,IAAI,CAAC;EACH,WAAW,EAAE,oBAAoB;EACjC,SAAS,EAAC,IAAI;EACd,KAAK,EAZC,OAAO;CAad;;AAED,AAAA,IAAI,CAAC;EACH,SAAS,EAAC,IAAI;EACd,OAAO,EAAC,CAAC;EACT,MAAM,EAAC,CAAC;CACT",
"sources": ["slovenscina-theme.scss"], "sources": [
"names": [], "slovenscina-theme.scss"
"file": "slovenscina-theme.css" ],
"names": [],
"file": "slovenscina-theme.css"
} }

View File

@ -1,17 +1,22 @@
.text-center { .text-center {
text-align: center; } text-align: center;
}
.m-b-1 { .m-b-1 {
margin-bottom: 1rem; } margin-bottom: 1rem;
}
.m-b-2 { .m-b-2 {
margin-bottom: 2rem; } margin-bottom: 2rem;
}
.m-b-3 { .m-b-3 {
margin-bottom: 3rem; } margin-bottom: 3rem;
}
.set-open-transition { .set-open-transition {
-webkit-transition: max-height 0.3s ease-out;
transition: max-height 0.3s ease-out; transition: max-height 0.3s ease-out;
overflow: hidden; } overflow: hidden;
}
/*# sourceMappingURL=utils.css.map */ /*# sourceMappingURL=utils.css.map */

View File

@ -1,7 +1,9 @@
{ {
"version": 3, "version": 3,
"mappings": "AAAA,YAAa;EACX,UAAU,EAAE,MAAM;;AAGpB,MAAO;EACL,aAAa,EAAC,IAAI;;AAEpB,MAAO;EACL,aAAa,EAAC,IAAI;;AAEpB,MAAO;EACL,aAAa,EAAC,IAAI;;AAGpB,oBAAqB;EACnB,UAAU,EAAE,wBAAwB;EACpC,QAAQ,EAAE,MAAM", "mappings": "AAAA,AAAA,YAAY,CAAC;EACX,UAAU,EAAE,MAAM;CACnB;;AAED,AAAA,MAAM,CAAC;EACL,aAAa,EAAC,IAAI;CACnB;;AACD,AAAA,MAAM,CAAC;EACL,aAAa,EAAC,IAAI;CACnB;;AACD,AAAA,MAAM,CAAC;EACL,aAAa,EAAC,IAAI;CACnB;;AAED,AAAA,oBAAoB,CAAC;EACnB,UAAU,EAAE,wBAAwB;EACpC,QAAQ,EAAE,MAAM;CACjB",
"sources": ["utils.scss"], "sources": [
"names": [], "utils.scss"
"file": "utils.css" ],
"names": [],
"file": "utils.css"
} }

View File

@ -47,58 +47,44 @@
<h2>Sodelujoči</h2> <h2>Sodelujoči</h2>
</div> </div>
</div>--> </div>-->
<div class="row">
{% set vars = {'prev_schoolyear': ''} %} <div class="col-6">
{% for item in cooperation_history %} <h2>Sodelujoči</h2>
{% if item[0] != vars.prev_schoolyear %} {% for u in institution_users %}
<div class="row">
<div class="col-12">
<h2>Šolsko leto {{item[0]}}</h2>
</div>
</div>
{% if vars.update({'prev_schoolyear': item[0]}) %} {% endif %}
{% endif %}
{% for entry in item[1] %}
<div class="row">
<div class="col-6">
<div class="team-item"> <div class="team-item">
<div class="team-item-name">{{entry.name}} <span class="team-item-role">{%if entry.role == "mentor" %}Mentor/-ica{%elif entry.role == "coordinator" %}Koordinator/-ica{%elif entry.role == "other" %}Druga vloga{%endif%}</span></div> <div class="team-item-name">{{u.name}} <span class="team-item-role">{{role_map[u.id]}}</span></div>
</div>
{% endfor %}
<h2 style="margin-top:2rem">Zgodovina sprememb</h2>
{% for item in cooperation_history %}
<div class="team-item">
<div class="team-item-name">
{{item.name}}
<span class="team-item-role" style="margin-left:0">{{item.timestamp.strftime('%d.%m.%Y')}} postane {% if item.role == "coordinator"%}koordinator/-ka{% elif item.role == "mentor" %}mentor/-ica{% elif item.role == "other" %}druga vloga{% endif %}</span>
</div> </div>
</div> </div>
{% endfor %}
</div> </div>
{% endfor %}
{% endfor %}
<div class="row" id="my_dataviz_title">
<div class="col-12">
<h2>Število oddaj na uporabnika</h2>
</div>
</div>
<div class="row">
<div class="col-6"> <div class="col-6">
<div id="my_dataviz"> <div id="my_dataviz_title">
<h2>Število oddaj na uporabnika</h2>
<div id="my_dataviz"></div>
</div> </div>
</div> <div id="my_dataviz__region_title">
</div> <h2>Število vseh oddaj po regijah</h2>
<div id="my_dataviz_region">
<div class="row" id="my_dataviz__region_title"> </div>
<div class="col-12"> <div>
<h2>Število vseh oddaj po regijah</h2> <div style="display:inline-block;width:12px;height:12px;background:#006CB7"></div>
</div> <p style="display:inline-block">Osnovne šole</p>
</div>
<div class="row"> <div style="margin-left:32px;display:inline-block;width:12px;height:12px;background:#B86D00"></div>
<div class="col-6"> <p style="display:inline-block">Srednje šole</p>
<div id="my_dataviz_region"> </div>
</div>
<div>
<div style="display:inline-block;width:12px;height:12px;background:#006CB7"></div>
<p style="display:inline-block">Osnovne šole</p>
<div style="margin-left:32px;display:inline-block;width:12px;height:12px;background:#B86D00"></div>
<p style="display:inline-block">Sredje šole</p>
</div> </div>
</div> </div>
</div> </div>
@ -157,10 +143,10 @@
var x = d3.scaleLinear() var x = d3.scaleLinear()
.domain([0,d3.max(data, function (d) { return d.value})]) .domain([0,d3.max(data, function (d) { return d.value})])
.range([ 0, width]); .range([ 0, width]);
svg.append("g") svg.append("g")
.attr("transform", "translate(0," + height + ")") .attr("transform", "translate(0," + height + ")")
.call(d3.axisBottom(x)) .call(d3.axisBottom(x)/*.ticks(5)*/)
.selectAll("text") .selectAll("text")
.style("text-anchor", "center"); .style("text-anchor", "center");