Skip to content

Commit

Permalink
added final data
Browse files Browse the repository at this point in the history
  • Loading branch information
romer8 committed Sep 15, 2023
1 parent 9d832b5 commit 596c05f
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 99 deletions.
98 changes: 4 additions & 94 deletions backend/static/css/ciroh.css
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,10 @@
.footer-link:hover {
color: rgba(0, 140, 255, 0.84);
}
.site-footer {
background-color: #255f9c;
z-index: 100;
}
@font-face {
font-family: 'Open Sans';
font-style: normal;
Expand Down Expand Up @@ -220,48 +224,9 @@
}

body {
position: relative;
font-family: 'open sans','Myriad Pro','Lucida Grande','Helvetica',sans-serif
}

a {
color: #2ca6ed
}

a:hover {
color: #0a84cb
}

#content {
position: relative;
min-height: 100%
}

.flash-messages {
left: 0;
top: 104px;
z-index: 200
}

.btn-primary {
background-color: #0A62A9;
border-color: #0A62A9
}

.btn-primary:hover {
background-color: #005198;
border-color: #005198
}

.btn-outline-primary {
color: #0A62A9;
border-color: #0A62A9
}

.btn-outline-primary:hover {
color: white;
background-color: #0A62A9
}


.site-header .navbar {
Expand All @@ -272,62 +237,7 @@ a:hover {
border-radius: 0;
margin: 0 !important;
}
.hero-bg {
background-color: #7ec1f7;
background-image: linear-gradient(345deg, #0a62a9 0%, #7ec1f7 100%);
}

.hero-container {
margin-top: -206px;
}

.hero {
padding-top: 254px;
z-index: 100;
}

.hero .hero-title {
color: #ffffff;
}

.feature-card {
background: none;
border: none;
}


.feature-card img:hover {
opacity: 1;
-webkit-animation: flash 1.5s;
animation: flash 1.5s;
}
@-webkit-keyframes flash {
0% {
opacity: .4;
}
100% {
opacity: 1;
}
}
@keyframes flash {
0% {
opacity: .4;
}
100% {
opacity: 1;
}
}
.feature-card .card-img-top {
max-width: 250px;
}

.feature-card .card-title {
color: #212529;
}

.feature-card .card-text {
color: #212529;
}

.site-footer {
background-color: #0a62a9;
Expand Down
Binary file added backend/static/images/ciroh/CIROHLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified backend/static/images/ciroh/water_data.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 27 additions & 5 deletions backend/templates/ciroh.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
padding-top: 195px;
padding-bottom: 195px;
background-image: url('{% static "images/ciroh/hydroinformatics.jpeg" %}');
background-position: 0% 0%, 50% 50%;
background-size: cover;
text-align: center;
background-repeat: no-repeat;
Expand All @@ -19,10 +18,9 @@
padding-top: 195px;
padding-bottom: 195px;
background-image: url('{% static "images/ciroh/water_data.jpeg" %}');
background-position: 0% 0%, 50% 50%;
background-size: cover;
text-align: center;
background-repeat: no-repeat;;
background-repeat: no-repeat;
}
</style>
{% endblock %}
Expand Down Expand Up @@ -50,7 +48,7 @@
<ul class="navbar-nav ms-auto">
{% show_menu 0 100 0 100 %}
<li class="nav-item text-center">
<a class="nav-link" href="/"><span>Tethys Portal</span></a>
<a class="nav-link" href="/t"><span>Tethys Portal</span></a>
</li>
</ul>
</div>
Expand All @@ -77,5 +75,29 @@ <h1 class="display-5 fw-bolder mb-2">A Bootstrap 5 template for Tethys</h1>
</div>
</div>
{% endplaceholder %}

<footer id="site-footer" class="site-footer mt-auto container-fluid">
{% static_placeholder "Footer" or %}

<div class="row align-items-center px-3 py-3">
<div class="col-md-5 py-3">
<div class="copyright-wrapper float-md-start">
<span class="copyright">Copyright © 2021 CIROH</span>
</div>
</div>
<div class="col-md-2 py-3">
<div class="documents-wrapper">

</div>
</div>
<div class="col-md-5 py-3">
<div class="tethys-attribution float-md-end">
<span class="powered-by-tethys">Powered by <img class="ps-1" src="{% static 'images/ciroh/CIROHLogo.png' %}" height="26px"> <a href="http://www.tethysplatform.org"> CIROH</a></span>
</div>
</div>
</div>
{% endstatic_placeholder %}

</footer>
{% endblock content %}


0 comments on commit 596c05f

Please sign in to comment.