Created
November 9, 2016 07:50
-
-
Save oziey88/e28b4a003586697e9ecc6a6d2ee9dfdc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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