style.css 610 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #dash_application{
  2. background-color: #1BA1E2;
  3. color:#ffffff;
  4. padding-top: 20px;
  5. }
  6. #dash_application ul{
  7. list-style-type: none;
  8. }
  9. #dash_application a{
  10. color:#ffffff;
  11. }
  12. .user-infos li{
  13. padding:0px;
  14. margin:0px;
  15. text-align: center;
  16. }
  17. .user-infos{
  18. margin:0;
  19. }
  20. #dash_application a.btn,.user-infos code{
  21. display:block;
  22. }
  23. .user-infos code{
  24. margin-bottom: 5px;
  25. }
  26. .user-infos li h1{
  27. font-size: 20px;
  28. cursor: pointer;
  29. text-align: center;
  30. }
  31. .user-infos li h1 i{
  32. line-height: 20px;
  33. margin-right:10px;
  34. opacity: 0;
  35. transition : all 0.2s linear;
  36. }
  37. .user-infos li h1:hover i{
  38. opacity: 0.8;
  39. }