style.css 909 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. html{
  2. font-family: "Helvetica Neue", sans-serif;
  3. width:100%;
  4. color:#666666;
  5. text-align:center;
  6. }
  7. .popup-overlay{
  8. /*Hides pop-up when there is no "active" class*/
  9. visibility:hidden;
  10. position:absolute;
  11. background:#ffffff;
  12. border:3px solid #666666;
  13. width:50%;
  14. height:50%;
  15. left:25%;
  16. }
  17. .popup-overlay.active{
  18. /*displays pop-up when "active" class is present*/
  19. visibility:visible;
  20. text-align:center;
  21. }
  22. .popup-content {
  23. /*Hides pop-up content when there is no "active" class */
  24. visibility:hidden;
  25. }
  26. .popup-content.active {
  27. /*Shows pop-up content when "active" class is present */
  28. visibility:visible;
  29. }
  30. button{
  31. display:inline-block;
  32. vertical-align:middle;
  33. border-radius:30px;
  34. margin:.20rem;
  35. font-size: 1rem;
  36. color:#666666;
  37. background: #ffffff;
  38. border:1px solid #666666;
  39. }
  40. button:hover{
  41. border:1px solid #666666;
  42. background:#666666;
  43. color:#ffffff;
  44. }