NewsletterCreator / src / css / app.scss
app.scss
Raw
// app global css in SCSS form

// styles.scss

*{
  margin: 0;
  padding: 0;
  font-family: 'Bahnschrift', sans-serif;
}

/* font sizes and weight */

h1{
  font-size: 5rem;
  line-height: 5rem;
  font-weight: 700;
}

.font-xs{
  font-size: 0.5rem;
  line-height: 0.5rem;
}

.font-s{
  font-size: 1rem;
  line-height: 1rem;
}

.font-sm{
  font-size: 1.5rem;
  line-height: 1.5rem;
}

.font-md{
  font-size: 2rem;
  line-height: 2rem;
}

.font-lg{
  font-size: 3rem;
  line-height: 3rem;
}

.font-xl{
  font-size: 4rem;
  line-height: 4rem;
}


/* width and height */

.w-25{
  width: 25%;
}

.w-50{
  width: 50%;
}

.w-75{
  width: 75%;
}

//full with available with full-width class

.h-25{
  height: 25%;
}

.h-50{
  height: 50%;
}

.h-75{
  height: 75%;
}

//full height available with full-height class


// global element styles
.elementTab{
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.elementBody{
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  background-color: $secondary;
  min-height: 10vh;
}

.simpleElementBody{
  border-radius: 24px;
  background-color: $secondary;
  min-height: 10vh;
}