mekasu0124

Untitled

Apr 6th, 2024
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.97 KB | None | 0 0
  1. .homeContainer, .titleContainer, .BodyContainer {
  2.     display: flex;
  3.     justify-content: center;
  4.     align-items: center;
  5.     flex-direction: column;
  6.     margin-left: auto;
  7.     margin-right: auto;
  8.     padding: 10px;
  9. }
  10.  
  11. .titleContainer {
  12.     width: 20%;
  13.     border-bottom: 2px solid darkgray;
  14.     border-radius: 20px;
  15. }
  16.  
  17. .bodyContainer {
  18.     margin-top: 40px;
  19.     width: 80%;
  20. }
  21.  
  22. .title {
  23.     font-size: 40px;
  24.     font-weight: bold;
  25.     font-style: italic;
  26.     color: #08A0FB;
  27.     letter-spacing: 1px;
  28.     text-align: center;
  29.     text-shadow: 2px 3px 4px darkgray;
  30. }
  31.  
  32. .bodyText {
  33.     font-size: 25px;
  34.     letter-spacing: 1px;
  35.     word-spacing: 1px;
  36.     color: darkgray;
  37.     text-align: center;
  38. }
  39.  
  40. .navLink {
  41.     font-size: 25px;
  42.     letter-spacing: 1px;
  43.     word-spacing: 1px;
  44.     text-align: center;
  45.     color: darkgray;
  46.     text-decoration: none;
  47. }
  48.  
  49. .bodyText:hover {
  50.     .bodyText > .navLink {
  51.         text-decoration: underline;
  52.     }
  53. }
Advertisement
Add Comment
Please, Sign In to add comment