framework for docs set up

This commit is contained in:
afeiszli
2021-05-14 18:06:17 -04:00
parent 2309111860
commit e2d8b2b1d4
140 changed files with 36040 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
.dropdown {
width: 125px;
vertical-align: middle;
}
.dropdownbutton {
color: inherit;
font-weight: 700;
font-size: .65rem;
}
.dropdown-content {
display: none;
position: absolute;
z-index: 1;
background-color: inherit;
}
.dropdown-content a {
display: block;
width: 125px;
margin: 8px;
font-size: .65rem;
font-weight: 200;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}
/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {}