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.

popup.css 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. html {
  2. font-size: 16px;
  3. box-sizing: border-box;
  4. }
  5. *, *::before, *::after {
  6. box-sizing: inherit;
  7. }
  8. body {
  9. margin: 0;
  10. padding: 0;
  11. }
  12. button {
  13. -webkit-appearance: none;
  14. -moz-appearance: none;
  15. background-color: #fff;
  16. border: none;
  17. cursor: pointer;
  18. }
  19. button:active {
  20. transform: scale(0.95);
  21. }
  22. button:focus {
  23. outline: none;
  24. }
  25. button::selection {
  26. background-color: transparent;
  27. }
  28. #main-button-container {
  29. display: flex;
  30. flex-flow: column;
  31. }
  32. #main-button-container button {
  33. padding: 10px;
  34. font-size: 6rem;
  35. display: flex;
  36. align-items: center;
  37. justify-content: center;
  38. height: 150px;
  39. width: 150px;
  40. color: #ccc;
  41. font-family: Font Awesome, sans-serif;
  42. }
  43. #main-button-container button.active {
  44. color: #000;
  45. }
  46. #main-button-container button:hover {
  47. text-shadow:
  48. 0 0 1px #fff,
  49. 0 0 3px #fff,
  50. 0 0 5px #fff;
  51. }
  52. #main-button-container button:hover {
  53. color: #999;
  54. }
  55. #main-button-container button::before {
  56. content: "\F08D";
  57. font-weight: 900;
  58. position: relative;
  59. top: 3px;
  60. }
  61. #main-button-container button::after {
  62. content: "\F05E";
  63. position: absolute;
  64. font-weight: 300;
  65. color: #c00;
  66. opacity: 0.0;
  67. transform: scaleX(-1) scale(1.5);
  68. }
  69. #main-button-container button.active::after {
  70. opacity: 1.0;
  71. }
  72. #aux-button-container {
  73. display: flex;
  74. border-top: 1px solid #ddd;
  75. }
  76. .options-button {
  77. font-size: 1.125rem;
  78. padding: 10px;
  79. color: #777;
  80. width: 100%;
  81. }
  82. .options-button:hover {
  83. color: #000;
  84. }
  85. .options-button::before {
  86. content: "\F1DE";
  87. font-family: Font Awesome;
  88. font-size: 0.875em;
  89. margin: 0 5px 0 0;
  90. }
  91. .options-button::after {
  92. content: "Options";
  93. }