A simple file sharing site with an easy to use API and online panel.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

68 Zeilen
1.1KB

  1. /* SHIMAPAN title */
  2. .sidebar-title {
  3. grid-row-start: 1;
  4. grid-row-end: 1;
  5. place-self: center;
  6. cursor: pointer;
  7. display: flex;
  8. justify-content: center;
  9. align-items: center;
  10. width: 200px;
  11. height: 60px;
  12. /*border-bottom: 1px solid #999;*/
  13. }
  14. .sidebar-title span {
  15. color: #2a9fd6;
  16. font-size: 20px;
  17. text-transform: uppercase;
  18. letter-spacing: 6px;
  19. }
  20. /* Nav Container */
  21. .sidebar {
  22. grid-row-start: 2;
  23. grid-row-end: 2;
  24. }
  25. /* Nav Elements */
  26. .nav li {
  27. cursor: pointer;
  28. display: flex;
  29. align-items: center;
  30. }
  31. .nav li a {
  32. flex: 1;
  33. outline: none;
  34. padding: 20px 0 20px;
  35. margin-left: 20px;
  36. font-size: 14px;
  37. color: #666;
  38. text-decoration: none;
  39. }
  40. .nav li span {
  41. background: #0d0d0d;
  42. width: 35px;
  43. height: 35px;
  44. border-radius: 50%;
  45. display: flex;
  46. align-items: center;
  47. justify-content: center;
  48. margin-left: 20px;
  49. }
  50. .nav-icon {
  51. font: 14px fontawesome;
  52. color: #fff;
  53. }
  54. .nav li a:hover {
  55. color: #fff;
  56. }
  57. .nav li a.active {
  58. color: #fff;
  59. }
  60. /* Prevent annoying outline on firefox */
  61. ::-moz-focus-inner {border: 0;}