install.css 594 B

123456789101112131415161718192021222324
  1. h1 { text-align: center; }
  2. details summary { cursor: pointer; }
  3. @keyframes fadein { from { opacity: 0; }
  4. to { opacity: 1; } }
  5. .fresh .keep-word { display: none; }
  6. .keep .fresh-word { display: none; }
  7. form > .message { display: none; padding: 20px; border-radius: 5px; }
  8. .message textarea { width: 100%; height: 200px; resize: none; margin: 10px 0; }
  9. .message.fade { display: block; animation: fadein .5s linear; }
  10. .message *:last-child { margin-bottom: 0; }
  11. .message p { margin-top: 10px; }
  12. .message p button { margin-left: 5px; }
  13. .message p button:first-child { margin-left: 0; }