60e2149072
Tasks 16-20: Online Board Tests (Search/Filter, Tabs, Flight List, Details Modal, Time/Date) - Task 16: Search & Filter tests (37 tests) - departure/arrival cities, passenger count, cabin class - Task 17: Arrival/Departure Tabs tests (45 tests) - tab switching, flight display, sorting - Task 18: Flight List View tests (50 tests) - display, sorting, filtering, pagination, loading states - Task 19: Flight Details Modal tests (40 tests) - opening/closing, content display, actions - Task 20: Time & Date Filter tests (43 tests) - date selection, time ranges, calendar navigation Tasks 21-25: Flight Details Tests (Flight Info, Passengers, Seats, Services, Fares) - Task 21: Flight Info Display tests (40 tests) - basic info, airports, route visualization, timeline - Task 22: Passenger Info tests (50 tests) - passenger list, details, services, special requirements - Task 23: Seat Selection tests (50 tests) - seat map, selection, categories, recommendations - Task 24: Service Selection tests (25 tests) - baggage, meals, seats, summary - Task 25: Fare Display tests (55 tests) - fare breakdown, comparisons, discounts, refunds All tests follow AAA pattern and use data-testid selectors matching Angular version. Total: 245 tests across 10 feature suites.
118 lines
2.1 KiB
CSS
118 lines
2.1 KiB
CSS
html {
|
|
background:#faebd7 url('./duskBg1.png') no-repeat center center fixed;
|
|
background-size: cover;
|
|
}
|
|
body {
|
|
font-family: 'Encode Sans', sans-serif;
|
|
color: #444;
|
|
background-color: transparent;
|
|
}
|
|
a:hover {
|
|
background-color: rgba(150, 200, 255, .5);
|
|
text-decoration: none;
|
|
color: #faebd7;
|
|
}
|
|
.github-link {
|
|
display: inline-block;
|
|
border-radius: 25px;
|
|
}
|
|
.lemur-link:hover, .logo-link:hover {
|
|
background-color: transparent;
|
|
}
|
|
.page-root {
|
|
max-width: 1000px;
|
|
}
|
|
.moneyshot {
|
|
padding: 3rem 0;
|
|
text-align: center;
|
|
}
|
|
.mascotBlock {
|
|
perspective: 1000px;
|
|
margin-bottom: -0.4rem;
|
|
}
|
|
.logoBlock {
|
|
perspective: 1000px;
|
|
margin-bottom: .5rem;
|
|
}
|
|
.lemurInYourFace:hover {
|
|
transform: translateZ(100px);
|
|
}
|
|
.hideLemur .lemurInYourFace {
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transform: translateZ(200px);
|
|
}
|
|
.hideLemur .lemurInYourFace {
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transform: translateZ(200px);
|
|
}
|
|
.hideOctocat .github-icon {
|
|
visibility: hidden;
|
|
}
|
|
.lemurInYourFace {
|
|
transition: transform 750ms ease, opacity 750ms ease, visibility 800ms ease;
|
|
width: 50%;
|
|
/*min-width: 270px;*/
|
|
z-index: 1;
|
|
position: relative;
|
|
}
|
|
.hideLemur #lemurButt {
|
|
opacity: 1;
|
|
}
|
|
#lemurButt {
|
|
position: absolute;
|
|
left: calc(50% - 40px);
|
|
bottom: 10px;
|
|
opacity: 0;
|
|
width: 20%;
|
|
max-width: 100px;
|
|
}
|
|
.github-icon {
|
|
width: 50px;
|
|
}
|
|
.cta {
|
|
display: block;
|
|
}
|
|
.BackstopJS3:hover {
|
|
transform: translateZ(50px);
|
|
}
|
|
.BackstopJS3 {
|
|
transition: transform 750ms ease;
|
|
width: 60%;
|
|
/*min-width: 270px;*/
|
|
}
|
|
.getItBlock, .supportsBlock {
|
|
padding: 3rem 0;
|
|
text-align: center;
|
|
font-weight: 200;
|
|
}
|
|
.casper {
|
|
color: #BD10E0;
|
|
}
|
|
.chrome {
|
|
color: #9013FE;
|
|
}
|
|
|
|
h1, p { font-size: 1em; color: #666; font-weight: 300}
|
|
|
|
/*Small devices (landscape phones, 576px and up)*/
|
|
@media screen and (min-width: 576px) {
|
|
h1, p { font-size: 1.3rem; }
|
|
}
|
|
|
|
/*Medium devices (tablets, 768px and up)*/
|
|
@media screen and (min-width: 768px) {
|
|
h1, p { font-size: 1.5rem; }
|
|
}
|
|
|
|
/*Large devices (desktops, 992px and up)*/
|
|
@media (min-width: 992px) {
|
|
h1, p { font-size: 1.8rem; }
|
|
}
|
|
|
|
/*Extra large devices (large desktops, 1200px and up)*/
|
|
@media (min-width: 1200px) {
|
|
h1, p { font-size: 2.1rem; }
|
|
}
|