Guest User

css question

a guest
Mar 2nd, 2024
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. @font-face {
  2. font-family: 'FiraMono';
  3. src: url('FiraMono-Regular.ttf');
  4. }
  5.  
  6. .header {
  7. width: 100%;
  8. height: 50px;
  9. background-color: #050E05;
  10. position: fixed;
  11. }
  12.  
  13. .header-text {
  14. font-family: "FiraMono";
  15. color: #FFFFFF;
  16. margin-left: 25px;
  17. }
  18.  
  19. .header-div {
  20. margin-left: 15px;
  21. margin-right: 15px;
  22. border-bottom: 1px solid #222;
  23. }
  24.  
  25. body {
  26. background-color: #050E05
  27. }
  28.  
  29. .header-icon {
  30. height: 30px;
  31. width: 30px;
  32. padding-left: 5px;
  33. }
  34.  
  35. .header-name {
  36. width: fit-content;
  37. height: 30px;
  38. background-color: black;
  39. margin-bottom: 10px;
  40. }
  41.  
  42. .contents {
  43. padding-top: 50px /* to compensate the topbar */
  44. }
  45.  
  46. p {
  47. font-family: "FiraMono";
  48. color: #FFFFFF
  49. }
Add Comment
Please, Sign In to add comment