A simple file sharing site with an easy to use API and online panel.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

105 linhas
1.6KB

  1. .keys {
  2. display: flex;
  3. flex-direction: row;
  4. flex-wrap: wrap;
  5. }
  6. .key {
  7. background: #000;
  8. border: 1px solid #2a9fd6;
  9. border-radius: 4px;
  10. box-shadow: 5px 5px 10px #000;
  11. margin: 20px;
  12. width: 300px;
  13. height: 100px;
  14. cursor: pointer;
  15. display: flex;
  16. justify-content: flex-start;
  17. flex-direction: row;
  18. transition: box-shadow 0.2s;
  19. overflow: hidden;
  20. }
  21. .key:hover {
  22. box-shadow: 0 0 5px #eee;
  23. }
  24. .key i {
  25. font-size: 48px;
  26. margin: auto 0 auto 20px;
  27. }
  28. .key span {
  29. font-size: 16px;
  30. vertical-align: center;
  31. margin: auto;
  32. -moz-user-select: none;
  33. user-select: none;
  34. }
  35. .key-name {
  36. color: #2a9fd6;
  37. font-family: 'Roboto Mono', monospace;
  38. }
  39. pre {
  40. overflow: auto;
  41. line-height: 1.7em;
  42. font-family: 'Roboto Mono', monospace;
  43. border: 1px solid #666;
  44. border-radius: 4px;
  45. display: block;
  46. padding: 10px;
  47. font-size: 14px;
  48. margin: 10px 0;
  49. background: #222;
  50. color: #2a9fd6;
  51. }
  52. #createKey {
  53. max-width: 920px;
  54. }
  55. .btn-del {
  56. text-transform: uppercase;
  57. border: 2px solid #ff6666;
  58. color: #ccc;
  59. }
  60. .btn-del:hover {
  61. background-color: #ff6666;
  62. }
  63. #identifier {
  64. font-size: 14px;
  65. background: #222;
  66. color: #d3d3d3;
  67. border: 1px solid #666;
  68. border-radius: 4px;
  69. padding: 10px;
  70. margin: 10px 0;
  71. }
  72. th {
  73. text-transform: uppercase;
  74. font-weight: bold;
  75. padding: 10px;
  76. }
  77. td {
  78. padding: 10px;
  79. }
  80. td input {
  81. vertical-align: middle;
  82. }
  83. td label {
  84. margin-bottom: 2px;
  85. padding-left: 3px;
  86. }
  87. em {
  88. text-transform: uppercase;
  89. font-weight: bold;
  90. }