Skip to content

Instantly share code, notes, and snippets.

@oziey88
Created November 9, 2016 07:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oziey88/e28b4a003586697e9ecc6a6d2ee9dfdc to your computer and use it in GitHub Desktop.
Save oziey88/e28b4a003586697e9ecc6a6d2ee9dfdc to your computer and use it in GitHub Desktop.
body {
background: white url("images/background.png");
}
ul.errorlist {
padding-left: 0;
}
ul.errorlist > li {
list-style: none;
}
.navbar {
border-radius: 0;
}
.navbar-brand {
font-family: 'Satisfy', cursive;
}
.glyphicon-star {
color: #CCCCCC;
font-size: 16px;
}
.glyphicon-star.active {
color: #FDB230;
}
/* Style The Dropdown Button */
.dropbtn {
background-color: #4CAF50;
color: balck;
padding: 10px;
font-size: 16px;
border: none;
cursor: pointer;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
position: relative;
display: inline-block;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
/* Links inside the dropdown */
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {
background-color: #4CAF50;
}
/* 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 {
background-color: #4CAF50;
}
table, td, th {
border: 1px solid #ddd;
text-align: center;
}
table {
border-collapse: collapse;
width: 100%;
}
th, td {
padding: 8px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment