contact.astro 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <div
  2. id="contact"
  3. class="window"
  4. style="position: absolute; left: 15%; top: 22%; display: none;"
  5. >
  6. <div id="contactheader" class="title-bar">
  7. <div class="title-bar-text">Contact</div>
  8. <div class="title-bar-controls">
  9. <button class="close" aria-label="Minimize" style="background-color: silver;"></button>
  10. <button class="close" aria-label="Close" style="background-color: silver;"></button>
  11. </div>
  12. </div>
  13. <div class="window-body">
  14. <div class="field-row-stacked">
  15. <!-- prettier-ignore -->
  16. <textarea
  17. readonly
  18. id="text203"
  19. style="font-size: 22px; resize: none; padding: 10px;"
  20. >Email : simon@simo.ng
  21. Discord : s1monlol</textarea>
  22. </div>
  23. </div>
  24. </div>
  25. <style>
  26. /* Default style for mobile and smaller devices */
  27. #contact {
  28. width: 30%;
  29. animation: createBox 0.2s;
  30. }
  31. @keyframes createBox {
  32. from {
  33. transform: scale(0);
  34. }
  35. to {
  36. transform: scale(1);
  37. }
  38. }
  39. /* Style for tablets, desktops, and larger devices */
  40. @media (max-width: 540px) {
  41. #contact {
  42. width: 80%;
  43. }
  44. }
  45. @media (max-width: 1080px) and (min-width: 540px) {
  46. #contact {
  47. width: 60%;
  48. }
  49. }
  50. </style>