|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- *, *::before, *::after {
- box-sizing: border-box;
- }
-
- @font-face {
- font-family: Lato;
- font-weight: 500;
- src: url('../fonts/Lato/Lato-Regular.ttf');
- }
-
- h1, h2, h3, h4, h5, h6 {
- margin : 0;
- }
-
- body {
- font-family: Lato;
- font-weight: 700;
- }
-
- .background {
- position: absolute;
- background-color: #161616;
- width: 100%;
- height: 60vh;
- overflow: hidden;
- }
-
- .background::after {
- content: "";
- position: absolute;
- bottom: -30px;
- left: -20%;
- width: 140%;
- height: 60px;
- background: white;
- border-radius: 50%;
- }
-
- .foreground {
- position: relative;
- padding: 1px;
- }
-
- header{
- text-align: center;
- color : white;
- margin: 110px auto 20px;
- }
-
- .tabs-holder {
- width: 75%;
- margin: 0 auto;
- text-align: center;
- background-color : #222222;
- color: white;
- border-radius: 500px;
-
- display: grid;
- grid-template-columns: 0.5fr 0.5fr;
- }
-
- .tab {
- border-radius : 4px;
- padding: 10px;
- border-radius: 500px;
- font-size: 13px;
- }
-
- .tab.active {
- background-color : #59c692;
- }
|