1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- @import '../node_modules/animate.css/animate.css';
- @font-face {
- font-family: 'Handlee';
- font-style: normal;
- font-weight: 400;
- src: url('./fonts/handlee-v12-latin-regular.eot'); /* IE9 Compat Modes */
- src: local(''),
- url('./fonts/handlee-v12-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('./fonts/handlee-v12-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
- url('./fonts/handlee-v12-latin-regular.woff') format('woff'), /* Modern Browsers */
- url('./fonts/handlee-v12-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
- url('./fonts/handlee-v12-latin-regular.svg#Handlee') format('svg'); /* Legacy iOS */
- }
- .handlee {
- font-family: 'Handlee', cursive;
- }
- @font-face {
- font-family: 'Amatic SC';
- font-style: normal;
- font-weight: 400;
- src: url('./fonts/amatic-sc-v22-latin-regular.eot'); /* IE9 Compat Modes */
- src: local(''),
- url('./fonts/amatic-sc-v22-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('./fonts/amatic-sc-v22-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
- url('../fonts/amatic-sc-v22-latin-regular.woff') format('woff'), /* Modern Browsers */
- url('./fonts/amatic-sc-v22-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
- url('./fonts/amatic-sc-v22-latin-regular.svg#AmaticSC') format('svg'); /* Legacy iOS */
- }
- @font-face {
- font-family: 'Amatic SC';
- font-style: normal;
- font-weight: 700;
- src: url('../fonts/amatic-sc-v22-latin-700.eot'); /* IE9 Compat Modes */
- src: local(''),
- url('./fonts/amatic-sc-v22-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('./fonts/amatic-sc-v22-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
- url('./fonts/amatic-sc-v22-latin-700.woff') format('woff'), /* Modern Browsers */
- url('./fonts/amatic-sc-v22-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
- url('./fonts/amatic-sc-v22-latin-700.svg#AmaticSC') format('svg'); /* Legacy iOS */
- }
- .amatic {
- font-family: 'Amatic SC', cursive;
- }
- .scrolled-down{
- transform:translateY(-100%); transition: all 0.3s ease-in-out;
- }
- .scrolled-up{
- transform:translateY(0); transition: all 0.3s ease-in-out;
- }
- nav .form-control {
- background-color: transparent;
- }
- nav .form-control::placeholder {
- color: rgba(255, 255, 255, 0.5);
- }
- footer .form-control {
- background-color: transparent;
- }
- footer .form-control::placeholder {
- color: rgba(255, 255, 255, 0.5);
- }
- .carousel-caption {
- background-color: rgba(0, 0, 0, 0.5);
- }
- .carousel-item img {
- object-fit: cover;
- object-position: top;
- height: 50vh;
- overflow: hidden;
- }
|