Pr0va1der

css

Feb 3rd, 2022
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. body {
  2. height: 100%;
  3. width: 100%;
  4. display: flex;
  5. flex-direction: column;
  6. }
  7.  
  8. header {
  9. width: 100%;
  10. height: 240px;
  11. display: flex;
  12. justify-content: space-between;
  13. }
  14.  
  15. .first-logo {
  16. height: 100%;
  17. width: 100%;
  18. display: inherit;
  19.  
  20. }
  21.  
  22. .first-logo-wrapper {
  23. width: 80%;
  24. display: inherit;
  25. flex-direction: column;
  26. justify-content: center;
  27. }
  28.  
  29. .first-logo-image {
  30. width: 100%;
  31. display: inherit;
  32. justify-content: center;
  33. }
  34.  
  35. .first-logo-caption {
  36. text-align: center;
  37. font-family: Arial, serif;
  38. font-size: 10pt;
  39. color: rgb(114, 134, 158);
  40. }
  41.  
  42. .title {
  43. height: 100%;
  44. width: 100%;
  45. display: inherit;
  46. justify-content: center;
  47. align-items: center;
  48. }
  49.  
  50. .title-text {
  51. font-family: Arial, "Arial Narrow";
  52. font-size: 32pt;
  53. }
  54.  
  55. .second-logo {
  56. width: 100%;
  57. height: 100%;
  58. display: inherit;
  59. justify-content: center;
  60. align-items: center;
  61. }
  62.  
  63. .second-logo-image {
  64. width: 70%;
  65. }
  66.  
  67. main {
  68. width: 100%;
  69. height: 240px;
  70. background-color: red;
  71. }
  72.  
  73. footer {
  74. width: 100%;
  75. height: 240px;
  76. background-color: yellow;
  77. }
  78.  
Advertisement
Add Comment
Please, Sign In to add comment