/*
  © 2023 CVS Health and/or one of its affiliates. All rights reserved.

  Licensed under the MIT License. See LICENSE file at the project root or
  https://opensource.org/license/mit/ for details.

  SPDX-License-Identifier: MIT
*/

/*
  style.css
  Stylesheet for web pages in validation/tests/targets/buttonMenu.
*/

:focus:not(ul), .focal {
  outline: 2px #00f solid;
  outline-offset: 2px;
}
.menubar {
  min-height: 7rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
}
.menubar li {
  list-style-type: none;
}
.open {
  display: block;
}
.shut {
  display: none;
}
ul:focus {
  outline: none;
}
