
/* jonolist/css/style.css */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500;600&display=swap');

body {
  font-family: 'Barlow Condensed', Arial, sans-serif;
}

h1, h2, h3, h4, .h1, .h2, .h3, .h4 {
  text-transform: uppercase;
}

.cursor-pointer {
  cursor: pointer;  
}

[x-cloak] { 
  display: none !important; 
}

/* bootstrap override for sticky table header with responsive table */

.table-responsive {
  min-height: 50vh;
  max-height: 50vh;
  overflow-y: auto;
}

.table-fixed-header thead th {
  position: sticky;
  top: 0;
  z-index: 1;
}