QualityNet Jira and QualityNet Confluence will be briefly unavailable on Wednesday, July 24, 2024, between 8:00 PM ET and 9:00 PM ET while the team performs an AMI update.  If you have questions or concerns, please reach out to us in Slack at #help-atlassian.

Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Section


Column


HTML
<div class="container">
  <div class="navlink">
    <div id="mysection" class="dropdown">
      <button>Menu 1</button>
      <div class="dropdown-content">
        <a href="https://qnetconfluence.cms.gov/display/TAQILC/Change+Packages">Change Packages</a>
        <a href="https://qnetconfluence.cms.gov/display/TAQILC/Consultancy+Summaries">Consultancy Summaries</a>
        <a href="https://qnetconfluence.cms.gov/display/TAQILC/Donor+Hospital+Resources">Donor Hospital Resources</a>
        <a href="https://qnetconfluence.cms.gov/display/TAQILC/ESRD+Treatment+Choices+Learning+Collaborative?preview=%2F196088516%2F273358005%2FETCLC+Glossary+of+Terms+FINAL.pdf">ETCLC Glossary of Terms</a> <a href="https://qnetconfluence.cms.gov/display/TAQILC/etclc-ksp-user-guides">ETCLC KSP User Guides</a>
        <a href="https://qnetconfluence.cms.gov/display/TAQILC/OPO+Resources">OPO Resources</a>
        <a href="https://qnetconfluence.cms.gov/display/TAQILC/Patient+and+Family+Resources">Patient and Family Resources</a>
        <a href="https://qnetconfluence.cms.gov/display/TAQILC/Progress+Tracker+Resources">Progress Tracker Resources</a>
        <a href="https://qnetconfluence.cms.gov/display/TAQILC/Transplant+Center+Resources">Transplant Center Resources</a>
      </div>
    </div>
    <div id="mysection" class="dropdown">
      <button>Menu 2</button>
      <div class="dropdown-content">
        <a href="https://qnetconfluence.cms.gov/display/TAQILC/Change+Packages">Change Packages</a>
        <a href="https://qnetconfluence.cms.gov/display/TAQILC/Consultancy+Summaries">Consultancy Summaries</a>
        <a href="https://qnetconfluence.cms.gov/display/TAQILC/Donor+Hospital+Resources">Donor Hospital Resources</a>
        <a href="https://qnetconfluence.cms.gov/display/TAQILC/OPO+Resources">OPO Resources</a>
        <a href="https://qnetconfluence.cms.gov/display/TAQILC/Patient+and+Family+Resources">Patient and Family Resources</a>
        <a href="https://qnetconfluence.cms.gov/display/TAQILC/Progress+Tracker+Resources">Progress Tracker Resources</a>
        <a href="https://qnetconfluence.cms.gov/display/TAQILC/Transplant+Center+Resources">Transplant Center Resources</a>
      </div>      
    </div>
    <div id="mysection" class="dropdown">
      <button>Menu 3</button>
      <div class="dropdown-content">
        <a href="https://qnetconfluence.cms.gov/display/TAQILC/Change+Packages">Change Packages</a>
        <a href="https://qnetconfluence.cms.gov/display/TAQILC/Consultancy+Summaries">Consultancy Summaries</a>
        <a href="https://qnetconfluence.cms.gov/display/TAQILC/Donor+Hospital+Resources">Donor Hospital Resources</a>
        <a href="https://qnetconfluence.cms.gov/display/TAQILC/OPO+Resources">OPO Resources</a>
        <a href="https://qnetconfluence.cms.gov/display/TAQILC/Patient+and+Family+Resources">Patient and Family Resources</a>
        <a href="https://qnetconfluence.cms.gov/display/TAQILC/Progress+Tracker+Resources">Progress Tracker Resources</a>
        <a href="https://qnetconfluence.cms.gov/display/TAQILC/Transplant+Center+Resources">Transplant Center Resources</a>
      </div>      
    </div>   
  </div>
</div>


CSS Stylesheet
button {
  border: none;
  font-family: "Georgia";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
 button:hover {
	color: #fdce08;
}

.sectionColumnWrapper {
  overflow-x: visible !important;  
}

.expand-control {
  font-size: 16px !important;
}

.container {
  display: flex;
  width: 100%;
  background-color: #1870b8;
  justify-content: space-evenly;
}

.container>div {
  flex: 1;
  /*grow*/      
}
#mysection {
  z-index: 100;
/*  width: 175px;*/
  justify-content: space-between;
}

.dropdown {
  display: inline-block;
  position: relative;
  white-space: nowrap; 
 /*  width: 175px;*/
    padding-left: 15px25px;  
 }

button {
  font-size: 20px;
  color: #FFF;
  background-color: #1870b8;
  padding: 10px;
  height: 50px;
}

.center {
  margin: auto;
  width: 75%;
  padding: 0px;
}

.innerCell {
  overflow-x: visible !important;
}

.navlink {
  height: 60px;
}

.navlink a {
  display: block !important;
  color: #FFF !important;
  padding: auto !important;
  text-decoration: none !important;
  text-align: left !important;
  white-space: nowrap !important;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 50px;
  /*right: 35px;*/
  left: 0px;
  width: auto;
  min-width: 120px;
  overflow: auto;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.4);
  background-color: #FFFFFF;
  font-family: "Georgia";
  font-size: 16px;
  font-style: normal;
  font-weight: 400; 
  line-height: 1.5em;
}

.dropdown-content > * {
    transition: 
    0.5s height cubic-bezier(.73,.32,.34,1.5),
    0.5s padding cubic-bezier(.73,.32,.34,1.5),
    0.5s margin cubic-bezier(.73,.32,.34,1.5),
    0.5s 0.2s color,
    0.2s background-color;  
}

.dropdown-content:hover {
	background: "#fff";
}

.dropdown:hover .dropdown-content {
  display: block;
  max-height: 550px;
  animation-name: wfc;
  animation-duration: 4s;
  transition: 0.2s 0.2s border-bottom-width ease-out;
}

.dropdown-content a {
  display: block !important;
  color: #000000 !important;
  /*padding: 5px !important;*/
  text-decoration: none !important;
  text-align: left !important;
  white-space: nowrap !important;
  height: 100%;
  padding: 0.6em 20px;
  white-space: nowrap;
  transition: 0.2s 0.2s border-bottom-width ease-out;
}

.dropdown-content a:hover {
  color: #003399;
  background: #f0f0f0;
}
 

@media screen and (max-width: 1525px) {
  .container {
    display: table;
  }

@keyframes wfc {
	from {
		opacity: 0;
		transform: scaleX(0.01)
	}
    to {
		opacity: 1;
		transform: scaleX(1)
	}
}



...