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.

login_menu.css 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*Initialize*/
  2. ul.loginmenu {
  3. display:none;
  4. position: absolute;
  5. margin: 0;
  6. padding: 5px;
  7. padding-bottom: 7px;
  8. top: 45px;
  9. left: -5px;
  10. background-color: rgba(0,0,0,0.9);
  11. border: 1px solid rgba(256, 256, 256, 0.2);
  12. border-radius:8px;
  13. }
  14. ul.loginmenu li {
  15. list-style-type: none;
  16. padding: 7px;
  17. }
  18. ul.loginmenu li.identity {
  19. color: #fff;
  20. font-size: 11pt;
  21. cursor: default;
  22. }
  23. ul.loginmenu:after {
  24. content: url('../images/dropdownPointer.png');
  25. display: block;
  26. position: absolute;
  27. top: -7px;
  28. left: 18px;
  29. }
  30. li a.authButton{
  31. background-color: #06a5df;
  32. padding-top: 3px;
  33. padding-bottom: 3px;
  34. padding-left: 29px;
  35. padding-right: 29px;
  36. border-radius: 4px;
  37. color: #fff;
  38. font-size: 11pt;
  39. cursor: pointer;
  40. }
  41. span.authentication:hover ul.loginmenu, ul.loginmenu:hover {
  42. display:block !important;
  43. }
  44. a.disabled {
  45. color: gray !important;
  46. pointer-events: none;
  47. }
  48. .loginmenuPadding {
  49. width: 50px;
  50. height: 30px;
  51. position: absolute;
  52. top: -30px;
  53. left: 0px;
  54. }