|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #navbar-efi {
- background-color: #ffe240;
- margin-bottom: 20px;
- }
-
- /* Login Dropdown */
-
- #login-dp{
- min-width: 250px;
- padding: 14px 14px 0;
- overflow:hidden;
- background-color:rgba(255,255,255,.8);
- }
- #login-dp .bottom{
- background-color:rgba(255,255,255,.8);
- border-top:1px solid #ddd;
- clear:both;
- padding:14px;
- }
- #login-dp .form-group {
- margin-bottom: 10px;
- }
-
- #login-button {
- text-align: right;
- min-width: 250px;
- }
-
-
- #login-button:focus {
- border-color: rgba(0, 0, 0, 0.8);
- box-shadow: 0 10px 10px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(126, 239, 104, 0.6);
- outline: 0 none;
- }
-
-
- @media(max-width:768px){
- #login-dp{
- background-color: inherit;
- color: #fff;
- }
- #login-dp .bottom{
- background-color: inherit;
- border-top:0 none;
- }
- }
|