You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
1.1 KiB

  1. *, *::before, *::after {
  2. box-sizing: border-box;
  3. }
  4. @font-face {
  5. font-family: Lato;
  6. font-weight: 500;
  7. src: url('../fonts/Lato/Lato-Regular.ttf');
  8. }
  9. h1, h2, h3, h4, h5, h6 {
  10. margin : 0;
  11. }
  12. body {
  13. font-family: Lato;
  14. font-weight: 700;
  15. }
  16. .background {
  17. position: absolute;
  18. background-color: #161616;
  19. width: 100%;
  20. height: 60vh;
  21. overflow: hidden;
  22. }
  23. .background::after {
  24. content: "";
  25. position: absolute;
  26. bottom: -30px;
  27. left: -20%;
  28. width: 140%;
  29. height: 60px;
  30. background: white;
  31. border-radius: 50%;
  32. }
  33. .foreground {
  34. position: relative;
  35. padding: 1px;
  36. }
  37. header{
  38. text-align: center;
  39. color : white;
  40. margin: 110px auto 20px;
  41. }
  42. .tabs-holder {
  43. width: 75%;
  44. margin: 0 auto;
  45. text-align: center;
  46. background-color : #222222;
  47. color: white;
  48. border-radius: 500px;
  49. display: grid;
  50. grid-template-columns: 0.5fr 0.5fr;
  51. }
  52. .tab {
  53. border-radius : 4px;
  54. padding: 10px;
  55. border-radius: 500px;
  56. font-size: 13px;
  57. }
  58. .tab.active {
  59. background-color : #59c692;
  60. }