changed logo size

This commit is contained in:
Luis Aleixo 2021-10-11 17:24:59 +02:00
parent 30c6e8d1dd
commit 1fe8b378fb
2 changed files with 20 additions and 7 deletions

View file

@ -18,7 +18,7 @@
{% block main %}
v{{ calculator_version }} <span style="float:right; font-weight:bold">Please send feedback to <a href="mailto:CARA-dev@cern.ch">CARA-dev@cern.ch</a></span>
v{{ calculator_version }} <span style="float:right; font-size:2.5vh; font-weight:bold">Please send feedback to <a href="mailto:CARA-dev@cern.ch">CARA-dev@cern.ch</a></span>
<header class= "bg-light">
<div class="container container--narrow container--padding">
<img src="/static/images/cara_logo.200x200.png" class="logo">
@ -108,15 +108,16 @@ v{{ calculator_version }} <span style="float:right; font-weight:bold">Please sen
<input type="number" step="any" id="ceiling_height" class="non_zero form-control" name="ceiling_height" placeholder="Room ceiling height (m)" min="0" data-has-radio="#room_data_dimensions">
</div>
</div>
<br>
Central heating system in use:
<div class="split">
<div>Central heating system in use:</div>
<div>
<input class="ml-2" type="radio" id="heating_no" name="room_heating_option" value=0 checked="checked">
<label for="heating_no">No</label>
<input class="ml-2" type="radio" id="heating_yes" name="room_heating_option" value=1>
<label for="heating_yes">Yes</label>
</div>
</div>
<div class="form-group row">
<div class="col-sm-4"><label class="col-form-label">Location:</label></div>
<div class="col-sm-6 align-self-center"><select id="location_select" form="not-submitted" class="form-control" name="location_select" required></select></div>
@ -143,12 +144,18 @@ v{{ calculator_version }} <span style="float:right; font-weight:bold">Please sen
<div class='sub_title'>Ventilation type:</div>
<div class="split">
<div>
<input type="radio" id="no_ventilation" name="ventilation_type" value="no_ventilation" checked>
<label for="no_ventilation">No ventilation</label>
<input class="ml-2" type="radio" id="mechanical_ventilation" name="ventilation_type" value="mechanical_ventilation" data-enables="#DIVmechanical_ventilation">
<label for="mechanical_ventilation">Mechanical</label>
<input class="ml-2" type="radio" id="natural_ventilation" name="ventilation_type" value="natural_ventilation" data-enables="#DIVnatural_ventilation">
</div>
<div>
<input type="radio" id="natural_ventilation" name="ventilation_type" value="natural_ventilation" data-enables="#DIVnatural_ventilation">
<label for="natural_ventilation">Natural</label><br>
</div>
</div>
<div id="DIVmechanical_ventilation" class="tabbed" style="display:none">
<div class="split">

View file

@ -86,7 +86,7 @@ body {
display: block;
margin-left: auto;
margin-right: auto;
height: 6em;
height: 4em;
}
.container {
@ -108,6 +108,7 @@ body {
.head-center {
text-align: center;
font-size: 3vh;
}
.center {
@ -194,6 +195,11 @@ footer img {
.logo {
float: left;
height: 6em;
}
.head-center {
font-size: 2.5rem;
}
}
/* Devices under 768px (md) */