Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

application.css 829B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #navbar-efi {
  2. background-color: #ffe240;
  3. margin-bottom: 20px;
  4. }
  5. /* Login Dropdown */
  6. #login-dp{
  7. min-width: 250px;
  8. padding: 14px 14px 0;
  9. overflow:hidden;
  10. background-color:rgba(255,255,255,.8);
  11. }
  12. #login-dp .bottom{
  13. background-color:rgba(255,255,255,.8);
  14. border-top:1px solid #ddd;
  15. clear:both;
  16. padding:14px;
  17. }
  18. #login-dp .form-group {
  19. margin-bottom: 10px;
  20. }
  21. #login-button {
  22. text-align: right;
  23. min-width: 250px;
  24. }
  25. #login-button:focus {
  26. border-color: rgba(0, 0, 0, 0.8);
  27. box-shadow: 0 10px 10px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(126, 239, 104, 0.6);
  28. outline: 0 none;
  29. }
  30. @media(max-width:768px){
  31. #login-dp{
  32. background-color: inherit;
  33. color: #fff;
  34. }
  35. #login-dp .bottom{
  36. background-color: inherit;
  37. border-top:0 none;
  38. }
  39. }