123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- @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;
- }
- .outline {
- line-height: 1.8em;
- }
- .outline ol {
- list-style-type: upper-roman;
- }
- .outline ol ol {
- list-style-type: upper-alpha;
- }
- .outline ol ol ol {
- list-style-type: decimal;
- }
- .outline ol ol ol ol {
- counter-reset: list;
- }
- .outline ol ol ol ol > li {
- list-style: none;
- }
- .outline ol ol ol ol > li:before {
- content: counter(list, lower-alpha) ") ";
- counter-increment: list;
- }
- .outline ol ol ol ol ol {
- counter-reset: list;
- }
- .outline ol ol ol ol ol > li {
- list-style: none;
- }
- .outline ol ol ol ol ol > li:before {
- content: counter(list, decimal) ") ";
- counter-increment: list;
- }
- table.costs tr.border-top {
- border-top: 2px solid !important;
- }
|