Advertisement
LakeBigHead

Untitled

Apr 3rd, 2023
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. * {
  2. box-sizing: border-box;
  3. }
  4.  
  5. body {
  6. margin: 0;
  7. font-family: 'Inter', sans-serif;
  8. }
  9.  
  10.  
  11. .header {
  12. display: flex;
  13. justify-content: center;
  14. background: #F55A5A;
  15. color: #fff;
  16. padding: .25em 0;
  17. }
  18.  
  19. .earth {
  20. margin-top: .75em;
  21. margin-right: .5em;
  22. width: 25px;
  23. height: 25px;
  24. }
  25.  
  26. .location-image {
  27. width: 125px;
  28. height: 168px;
  29. border-radius: 9px;
  30. object-fit: cover;
  31. }
  32.  
  33. .location-card {
  34. margin: 3em 2em;
  35. }
  36.  
  37. .wrapper {
  38. display: flex;
  39. }
  40.  
  41. .first-wrapper {
  42. display: flex;
  43. flex-direction: row;
  44. align-items: center;
  45. margin-bottom: 6em;
  46. margin-left: 1em;
  47. }
  48.  
  49. .second-wrapper {
  50. display: flex;
  51. flex-direction: column;
  52. margin-top: 4em;
  53. }
  54.  
  55. .info-wrapper {
  56. display: flex;
  57. flex-direction: column;
  58. }
  59.  
  60. .location {
  61. text-transform: uppercase;
  62. letter-spacing: 2px;
  63. margin-right: .5em;
  64. color: #2B283A;
  65. }
  66.  
  67. .google-maps-link {
  68. color: #918E9B;
  69. }
  70.  
  71. .path-image {
  72. color: #F55A5A;
  73. background-color: #F55A5A;
  74. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement