A simple file sharing site with an easy to use API and online panel.
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.

140 lines
2.4KB

  1. *, *:before, *:after {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. html, body {
  7. height: 100vh;
  8. }
  9. body {
  10. font: 600 14px 'Roboto', sans-serif;
  11. color: #000000;
  12. background: #000000;
  13. overflow-x: hidden;
  14. }
  15. .container {
  16. display: flex;
  17. min-height: 100%;
  18. }
  19. .sidebar {
  20. position: absolute;
  21. width: 220px;
  22. }
  23. .content {
  24. flex: 1;
  25. padding: 30px;
  26. background: #444444;
  27. box-shadow: 0 0 5px rgba(0,0,0,1);
  28. transform: translate3d(0,0,0);
  29. transition: transform .3s;
  30. color: #cccccc;
  31. }
  32. .content.isOpen {
  33. transform: translate3d(220px,0,0);
  34. }
  35. .button {
  36. cursor: pointer;
  37. }
  38. .button:before {
  39. content: '\f0c9';
  40. font: 42px fontawesome;
  41. color: #eeeeee;
  42. }
  43. .sidebar-title {
  44. color: #2a9fd6;
  45. cursor: pointer;
  46. font-size: 16px;
  47. line-height: 50px;
  48. text-align: center;
  49. text-transform: uppercase;
  50. letter-spacing: 7px;
  51. border-bottom: 1px solid #222;
  52. background: #2a2a2a;
  53. }
  54. .nav li a {
  55. outline: 0;
  56. position: relative;
  57. display: block;
  58. padding: 20px 0 20px 50px;
  59. font-size: 14px;
  60. color: #eee;
  61. background: #333333;
  62. border-bottom: 1px solid #222;
  63. text-decoration: none;
  64. }
  65. .nav li a:before {
  66. font: 14px fontawesome;
  67. position: absolute;
  68. top: 19px;
  69. left: 20px;
  70. }
  71. .nav li:nth-child(1) a:before { content: '\f00a'; }
  72. .nav li:nth-child(2) a:before { content: '\f002'; }
  73. .nav li:nth-child(3) a:before { content: '\f084'; }
  74. .nav li:nth-child(4) a:before { content: '\f0e0'; }
  75. .nav li:nth-child(5) a:before { content: '\f0c0'; }
  76. .nav li:nth-child(6) a:before { content: '\f233'; }
  77. .nav li:nth-child(7) a:before { content: '\f023'; left: 23px; }
  78. .nav li a:hover {
  79. background: #444;
  80. }
  81. ::-moz-focus-inner {border: 0;}
  82. .nav li a.active {
  83. box-shadow: inset 5px 0 0 #2A9FD6, inset 6px 0 0 #222;
  84. background: #444;
  85. }
  86. .inner {
  87. display: flex;
  88. flex-direction: column;
  89. }
  90. .keys {
  91. display: flex;
  92. flex-direction: row;
  93. }
  94. .key {
  95. background: #555;
  96. border: 3px solid #2a9fd6;
  97. border-radius: 5px;
  98. box-shadow: 5px 5px 10px #000;
  99. margin: 10px;
  100. width: 300px;
  101. height: 100px;
  102. }
  103. .add-key {
  104. cursor: pointer;
  105. display: flex;
  106. justify-content: flex-start;
  107. flex-direction: row;
  108. }
  109. .add-key i {
  110. font-size: 48px;
  111. margin: auto 0 auto 20px;
  112. }
  113. .add-key span {
  114. font-size: 36px;
  115. vertical-align: center;
  116. margin: auto;
  117. -moz-user-select: none;
  118. user-select: none;
  119. }