12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /* typography */
- @import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');
- body {
- line-height: 1.2;
- font-family: $primary-font;
- -webkit-font-smoothing: antialiased;
- font-size: 1rem;
- color: $text-color;
- }
- p,
- .paragraph {
- font-weight: 400;
- color: $text-color;
- font-size: 1.1rem;
- line-height: 1.7;
- font-family: $primary-font;
- }
- small {
- font-size: 88%;
- }
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- color: $text-color-dark;
- font-family: $primary-font;
- font-weight: 700;
- line-height: 1.2;
- }
- h1,
- .h1 {
- font-size: 48px;
- @include tablet {
- font-size: 40px;
- }
- }
- h2,
- .h2 {
- font-size: 38px;
- @include tablet {
- font-size: 30px;
- }
- }
- h3,
- .h3 {
- font-size: 24px;
- }
- h4,
- .h4 {
- font-size: 20px;
- }
- h5,
- .h5 {
- font-size: 16px;
- }
- h6,
- .h6 {
- font-size: 15px;
- }
- .display-3{
- font-size: 3.5rem;
- }
- .linkedin_sec {
- display: block;
- border: 1px solid $text-color;
- border-radius: 50%;
- width: 40px;
- height: 40px;
- }
|