42 lines
690 B
CSS
42 lines
690 B
CSS
/*@tailwind base;*/
|
|
/*@tailwind components;*/
|
|
/*@tailwind utilities;*/
|
|
|
|
@import 'https://fonts.googleapis.com/css?family=Montserrat';
|
|
|
|
.step_title{
|
|
text-align: left;
|
|
font-size: 1.125rem;
|
|
font-weight: 700;
|
|
color: #000;
|
|
font-family: 'Montserrat',sans-serif;
|
|
margin-bottom: 30px
|
|
}
|
|
|
|
.step_title:after {
|
|
width: 85px;
|
|
height: 3px;
|
|
background-color: #f91ea9;
|
|
content: "";
|
|
display: block;
|
|
margin: 10px 0 0;
|
|
}
|
|
|
|
#app {
|
|
max-width: 1280px;
|
|
margin: 1rem auto;
|
|
padding: 2rem;
|
|
font-family: 'Montserrat',sans-serif;
|
|
background-color: #fff;;
|
|
}
|
|
|
|
.fade-enter-active,
|
|
.fade-leave-active {
|
|
transition: opacity 0.3s ease;
|
|
}
|
|
|
|
.fade-enter-from,
|
|
.fade-leave-to {
|
|
opacity: 0;
|
|
}
|