added style to organizationand person

This commit is contained in:
JoBCB 2020-11-15 18:47:41 +00:00
parent 26a9725ed1
commit 70a5ee7ac0
3 changed files with 26 additions and 7 deletions

View File

@ -32,9 +32,21 @@ font-style: normal;
/***************** EMERGENCY BUTTON AND MOCKUPS****************/
div#backend-data-button{
background-color: #1B42D8;
width: 250px;
height: 55px;
max-width: 365px !important;
min-height: 48px !important;
font-family: 'Roboto Condensed Bold', sans-serif;
font-size: calc(12px + (14 - 12) * ((100vw - 768px) / (1400 - 768)));
line-height: 16px;
font-weight: bold;
font-stretch: condensed;
font-style: normal;
line-height: normal;
letter-spacing: 1.5px;
text-align: center;
text-decoration: none;
color: #ffffff;
cursor: pointer;
background-color: var(--blue-blue);
border-radius: 6px;
margin: 0 auto;
display: flex;
@ -42,6 +54,12 @@ div#backend-data-button{
justify-content: center;
margin-top: 20px;
}
img.placeholder-style {
width: 100%;
}
div#container-backend-data-button a{
text-decoration: none;
}
@ -1331,3 +1349,4 @@ div#tutorials-intro h3, div#tutorials-intro p {
margin: auto;
}

View File

@ -6,13 +6,13 @@
<div id="container-backend-data-button">
<a target="_blank" href="https://daap.bannerrepeater.org/wiki/Item:{{ org_id }}">
<div id="backend-data-button">
<div id="backend-data-button" class="primary-button">
<span>Go to backend to see live data</span>
</div>
</a>
</div>
<img src="{{ url_for('static', filename='/imgs/Pages/mockup_page_org.png') }}">
<img class="placeholder-style" src="{{ url_for('static', filename='/imgs/Pages/mockup_page_org.png') }}">
{% endblock content %}

View File

@ -6,13 +6,13 @@
<div id="container-backend-data-button">
<a target="_blank" href="https://daap.bannerrepeater.org/wiki/Item:{{ person_id }}">
<div id="backend-data-button">
<div id="backend-data-button" class="primary-button">
<span>Go to backend to see live data</span>
</div>
</a>
</div>
<img src="{{ url_for('static', filename='/imgs/Pages/mockup_page_person.png') }}">
<img class="placeholder-style" src="{{ url_for('static', filename='/imgs/Pages/mockup_page_person.png') }}">
{% endblock content %}