/* jarvis-bulma docs global style */

html,
body,
.page-container {
  height: 100%;
}

body {
  background-color: hsl(0, 0%, 84%);
}

.page-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  outline: solid 1px silver;
}

.page-container.is-extended {
  max-width: unset;
}

aside {
  width: 240px;
  background-color: hsl(0, 0%, 100%);
  border-right: solid 1px silver;
  padding: 12px;
  overflow-y: auto;
}

main.jarvis-bulma {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  background-color: whitesmoke;
}

aside h1 {
  color: #404040;
  font-size: 24px;
  text-align: center;
  margin: 12px 0 18px;
}

main.jarvis-bulma > h1 {
  font-size: 24px;
  font-weight: bold;
  margin: 12px 0;
}

main.jarvis-bulma > section > h2 {
  display: inline-block;
  margin: 12px 0 8px;
  color: hsl(210, 50%, 25%);
  background-color: hsl(0, 0%, 90%);
  font-family: monospace;
  font-size: 14px;
  margin: 12px 0 8px;
  padding: 0px 8px;
  border-radius: 4px;
}

main.jarvis-bulma > section {
  margin: 12px 0;
}
main.jarvis-bulma > section:last-child {
  margin-bottom: 0;
}
main.jarvis-bulma .section-title {
  font-size: 20px;
  margin: 18px 0 12px;
}
main.jarvis-bulma .section-content {
  border: solid 1px silver;
  padding: 24px;
  background-color: white;
}
main.jarvis-bulma .section-content.is-half {
  width: 50%;
}
main.jarvis-bulma .section-content.is-primary {
  background-color: #00d1b2;
  color: white;
}

/* bd */
a {
  cursor: pointer;
}
svg {
  max-height: 100%;
  max-width: 100%
}
.bd-icon-size .icon {
  background-color: #ffdd57;
}
.bd-notification {
  background-color: #f5f5f5;
  border-radius: 4px;
  color: #7a7a7a;
  font-weight: 600;
  padding: 1.25rem 0;
  position: relative;
  text-align: center;
}
.bd-notification.is-primary {
  background-color: #00d1b2;
  color: #fff;
}
.bd-notification code,
.bd-notification pre {
  background-color: rgba(10, 10, 10, 0.2);
  border-radius: 4px;
  color: #fff;
}

/* Bulma Generic */

code {
  background-color: whitesmoke;
  color: #da1039;
  font-size: 0.875em;
  font-weight: normal;
  padding: 0.25em 0.5em 0.25em;
}

/* Bulma Helpers */
/* TODO Update colors */

.has-text-white {
  color: white !important;
}

.has-background-white {
  background-color: white !important;
}

.has-text-black {
  color: #0a0a0a !important;
}

.has-background-black {
  background-color: #0a0a0a !important;
}

.has-text-light {
  color: whitesmoke !important;
}

.has-background-light {
  background-color: whitesmoke !important;
}

.has-text-dark {
  color: #363636 !important;
}

.has-background-dark {
  background-color: #363636 !important;
}

.has-text-primary {
  color: #00d1b2 !important;
}

.has-text-info {
  color: #3298dc !important;
}

.has-background-info {
  background-color: #3298dc !important;
}

.has-text-success {
  color: #48c774 !important;
}

.has-text-warning {
  color: #ffdd57 !important;
}

.has-text-danger {
  color: #f14668 !important;
}

.has-text-grey {
  color: #7a7a7a !important;
}

.has-background-grey {
  background-color: #7a7a7a !important;
}

