Advertisement
Arfizato

Untitled

Mar 16th, 2022
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.20 KB | None | 0 0
  1. body{
  2. background-color: #FBD3DC;
  3. width:900px;
  4. margin:auto;
  5. display:flex;
  6. flex-direction:column;
  7. font-family:DK Smiling Cat;
  8. }
  9. header{
  10. display:flex;
  11. justify-content: space-between;
  12. }
  13. header img{
  14. height: 50%;
  15. }
  16. #slider{
  17. display: flex;
  18. align-items:center;
  19. }
  20. #slider img{
  21. display: flex;
  22. flex-direction:row;
  23. justify-content:center;
  24. align-items: center;
  25. width: 400px;
  26. height: 400px;
  27. }
  28. #social{
  29. display: flex;
  30. flex-direction: column;
  31. justify-content: space-evenly;
  32. height: 150px;
  33. position: fixed;
  34. right: 20px;
  35. top: 40vh;
  36. }
  37. #social img{
  38. width: 35px;
  39. height: 35px;
  40. }
  41. p{
  42. font-size:200%;
  43. color: #DD2224;
  44. }
  45. h1{
  46. font-size: 400%;
  47. color: #DD2224;
  48. }
  49. h2{
  50. font-size:200%;
  51. color: #DD2224;
  52. }
  53.  
  54. #description{
  55. font-family:DK Smiling Cat;
  56. display: flex;
  57. flex-direction:column;
  58. justify-content:flex-end;
  59.  
  60. }
  61.  
  62. #description a{
  63. color:white;
  64. width: 60%;
  65. text-decoration: none;
  66. font-size:80%;
  67. }
  68. .button {
  69. width: 200px;
  70. padding-top: 30px;
  71. padding-bottom: 30px;
  72. text-align: center;
  73. color: #000;
  74. text-transform: uppercase;
  75. font-weight: 600;
  76. margin-left: 30px;
  77. margin-bottom: 30px;
  78. cursor: pointer;
  79. display: inline-block;
  80. }
  81.  
  82. .button-3 {
  83. border: 2px solid #DD2224;
  84. background-color: #DD2224;
  85. border-radius: 20px;
  86. color: #fff;
  87. transition: .3s;
  88. }
  89. .button-3:hover {
  90. box-shadow: 8px 8px #A02324;
  91. transition: .3s;
  92. }
  93. hr.rounded {
  94. border-top: 8px solid #DD2224;
  95. border-radius: 5px;
  96. }
  97. #footer{
  98. padding:40px;
  99. display:flex;
  100. flex-direction:row;
  101. justify-content:center;
  102. align-items: center;
  103. padding:40px;
  104. font-family:DK Smiling Cat;
  105. line-height:2em;
  106. padding: 5px;
  107. }
  108. #footer ul {
  109. margin: 0;
  110. padding: 5px;
  111. list-style-type: none;
  112. text-align: center;
  113. }
  114.  
  115. #footer ul li {
  116. display: inline;
  117. }
  118.  
  119. #footer ul li a {
  120. text-decoration: none;
  121. padding: .2em 1em;
  122. color: #DD2224;
  123. font-size: x-large;
  124. }
  125.  
  126. #footer ul li a:hover {
  127. color: rgb(255, 255, 255);
  128. }
  129.  
  130. a:active{
  131. color: rgb(255, 255, 255);
  132. }
  133. a:hover{
  134. color: #fff;
  135. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement