cara/caimira/apps/calculator/static/css/report.css

239 lines
4 KiB
CSS
Raw Normal View History

#body {
top: 10px;
left: 20px;
bottom: 20px;
right: 20px;
padding: 20px;
2022-06-14 12:48:55 +00:00
-webkit-print-color-adjust: exact; /* chrome & webkit browsers */
print-color-adjust: exact; /*firefox & IE */
}
2020-11-05 22:35:33 +00:00
h1 {
text-align: center;
}
.subtitle {
text-align: center;
2021-08-26 08:32:22 +00:00
font-size: 17px;
padding-bottom: 20px;
}
p.data_italic {
font-style: italic;
}
p.data_title {
font-weight: bold;
}
p.data_text {
padding-left: 30px;
}
p.data_subtext {
padding-left: 60px;
margin-left: -3em;
}
p.result_title {
font-weight: bold;
2021-08-26 08:32:22 +00:00
font-size: 20px;
}
2020-11-05 20:22:03 +00:00
p.image {
text-align: center;
2021-08-26 08:32:22 +00:00
font-size: 17px;
2020-11-05 20:22:03 +00:00
}
p.disclaimer {
2021-08-26 08:32:22 +00:00
font-size: 16px;
}
p.notes {
2021-08-26 08:32:22 +00:00
font-size: 13px;
}
#pdf_qrcode_aref {
margin-right: 1%;
width: 100pt;
}
.icon_button {
border: none;
background: none;
}
.icon_button:focus {
outline: 0 !important;
}
.nav-tabs .nav-item .nav-link.active {
font-weight: bold;
}
.nav-tabs .nav-item .nav-link {
color: black;
}
2021-08-18 10:17:01 +00:00
.tabs-div {
margin: 1%;
border: #DFDFDF 1px solid;
border-radius: 5px;
}
2021-08-27 14:38:45 +00:00
@media print {
#results,
#rules,
#data {
display: contents!important;
}
2021-08-27 14:38:45 +00:00
#link_reproduce_results {
display: none!important;
2021-08-19 10:29:06 +00:00
}
#pdf_qrcode_aref {
2021-08-27 14:38:45 +00:00
visibility: inherit!important;
2021-08-19 10:29:06 +00:00
}
2021-08-18 10:17:01 +00:00
.collapse {
display: block!important;
}
.tab-content {
border-top: none!important;
}
.nav-tabs {
display: none!important;
}
.tabs-div {
border: none!important;
}
.icon_button {
display: none!important;
}
.pi-image {
max-height: 9em;
}
.pi-box {
max-width: 260px!important;
}
.card {
page-break-inside: avoid!important;
break-inside: avoid!important;
}
#link-results {
display: none;
2021-08-27 14:38:45 +00:00
}
#disclaimer {
border: 2px solid black;
padding: 15px;
2021-08-27 14:38:45 +00:00
page-break-inside: avoid;
2021-08-19 12:26:58 +00:00
}
#button_full_exposure, #button_hide_high_concentration {
2022-03-10 11:36:10 +00:00
display: none!important;
}
#long_range_cumulative_checkbox, #lr_cumulative_checkbox_label {
display: none!important;
}
#button_alternative_full_exposure, #button_alternative_hide_high_concentration {
2022-03-10 11:36:10 +00:00
display: none!important;
}
2022-08-05 14:36:53 +00:00
#export-csv {
display: none;
}
2021-08-18 10:17:01 +00:00
}
/* CSS for the animation */
.intro-banner-vdo-play-btn {
height: 60px;
width: 60px;
position: relative;
text-align: center;
border-radius: 100px;
z-index: 1;
-webkit-print-color-adjust: exact!important;
2022-06-14 12:48:55 +00:00
print-color-adjust: exact!important;
}
.intro-banner-vdo-play-btn i {
line-height: 56px;
font-size: 30px
}
.intro-banner-vdo-play-btn .ripple {
position: absolute;
width: 160px;
height: 160px;
z-index: -1;
left: 50%;
top: 50%;
opacity: 0;
margin: -80px 0 0 -80px;
border-radius: 100px;
-webkit-animation: ripple 1.8s infinite;
animation: ripple 1.8s infinite
}
@-webkit-keyframes ripple {
0% {
opacity: 1;
-webkit-transform: scale(0);
transform: scale(0)
}
100% {
opacity: 0;
-webkit-transform: scale(1);
transform: scale(1)
}
}
@keyframes ripple {
0% {
opacity: 1;
-webkit-transform: scale(0);
transform: scale(0)
}
100% {
opacity: 0;
-webkit-transform: scale(1);
transform: scale(1)
}
}
.intro-banner-vdo-play-btn .ripple:nth-child(2) {
animation-delay: .3s;
-webkit-animation-delay: .3s
}
.intro-banner-vdo-play-btn .ripple:nth-child(3) {
animation-delay: .6s;
-webkit-animation-delay: .6s
2021-08-25 13:42:29 +00:00
}
.split {
/* flex: 1; */
clear: both;
display: inline-flex;
flex-direction: column;
width: 100%;
}
@media screen and (min-width: 40em) {
.split {
flex-direction: row;
}
.split>* {
flex-basis: 100%;
}
.paragraph-title {
2021-08-25 13:42:29 +00:00
text-align: left;
}
.split>*+* {
margin-left: 2em;
}
.bigButton {
width: 25%;
}
.logo {
float: left;
}
}