File size: 5,659 Bytes
fa881a6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Trips UI</title>
<style>
body { margin:0; padding:0; background:transparent; }
#render-target{
width:1080px; height:2400px;
position:relative; overflow:hidden;
background:#FFFFFF;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
color:#212121;
}
.content{ padding: 48px 48px 220px; }
.page-title{
font-size:64px; line-height:1.1; margin: 48px 0 24px 0; font-weight:700;
}
.section-title{
font-size:44px; line-height:1.2; margin: 16px 0 24px 0; font-weight:700; color:#333;
}
.card{
background:#fff;
border-radius:28px;
box-shadow: 0 10px 20px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.08);
border: 1px solid #ECECEC;
}
.stats-card{
display:flex; align-items:flex-start;
padding:36px; margin: 16px 0 36px 0;
}
.stats-card .title{ font-size:40px; font-weight:800; margin-bottom:8px; }
.stats-card .sub{ font-size:32px; color:#616161; }
.stats-card .email{ font-weight:700; color:#1a73e8; }
.tabs{
display:flex; align-items:flex-end; gap:64px;
padding: 12px 8px 0 8px;
border-bottom:1px solid #E5E5E5;
margin-bottom: 36px;
}
.tab{
font-size:36px; color:#454545; padding:24px 0; position:relative;
}
.tab.active{ font-weight:700; }
.tab.active::after{
content:""; position:absolute; left:0; bottom:-1px; width:320px; height:6px; background:#333; border-radius:3px;
}
.section-header{
font-size:52px; font-weight:800; margin: 48px 0 28px 0;
}
.trip-card{
margin: 0 0 36px 0;
}
.trip-image{
height:520px; border-radius:36px; overflow:hidden;
background:#E0E0E0; border:1px solid #BDBDBD;
display:flex; align-items:center; justify-content:center; color:#757575; font-size:36px;
}
.trip-title{ font-size:44px; font-weight:800; margin:28px 0 8px 0; }
.trip-dates{ font-size:34px; color:#666; }
/* Overflow menu (opened) */
.overflow-menu{
position:absolute; top:200px; right:36px; width:560px;
background:#fff; border-radius:22px;
box-shadow: 0 12px 28px rgba(0,0,0,0.18), 0 2px 6px rgba(0,0,0,0.12);
border:1px solid #EEE;
z-index:5;
}
.overflow-item{
padding:32px 36px; font-size:40px; color:#222;
}
.overflow-item + .overflow-item{ border-top:1px solid #F0F0F0; }
/* Bottom navigation */
.bottom-nav{
position:absolute; left:0; right:0; bottom:0; height:180px;
background:#ffffff; border-top:1px solid #EAEAEA;
display:flex; justify-content:space-around; align-items:center;
z-index:4;
}
.nav-item{ text-align:center; color:#666; font-size:30px; }
.nav-item .label{ margin-top:12px; }
.nav-item.active{ color:#ff6a00; }
.home-indicator{
position:absolute; left:50%; transform:translateX(-50%);
bottom:20px; width:280px; height:10px; border-radius:6px; background:#CFCFCF;
z-index:6;
}
/* Simple icon sizing */
.nav-icon{ width:56px; height:56px; display:block; margin:0 auto; }
.icon-stroke{ stroke:currentColor; fill:none; stroke-width:6; stroke-linecap:round; stroke-linejoin:round; }
.icon-fill{ fill:currentColor; }
</style>
</head>
<body>
<div id="render-target">
<!-- Floating overflow menu -->
<div class="overflow-menu card">
<div class="overflow-item">Trips settings</div>
<div class="overflow-item">Search</div>
<div class="overflow-item">Create a Trip</div>
</div>
<div class="content">
<div class="page-title">Trips</div>
<div class="section-title">Trip Stats</div>
<div class="card stats-card">
<div>
<div class="title">Unlock more stats</div>
<div class="sub">Forward booking emails to <span class="email">trips@kayak.com</span></div>
</div>
</div>
<div class="tabs">
<div class="tab active">Upcoming (4)</div>
<div class="tab">Past</div>
</div>
<div class="section-header">Current Trips</div>
<div class="trip-card">
<div class="trip-image">[IMG: Seattle skyline at dusk]</div>
<div class="trip-title">Seattle Trip</div>
<div class="trip-dates">Jan 24 – 26</div>
</div>
<div class="trip-card">
<div class="trip-image">[IMG: Seattle skyline at dusk]</div>
</div>
</div>
<!-- Bottom navigation -->
<div class="bottom-nav">
<div class="nav-item">
<svg class="nav-icon" viewBox="0 0 24 24">
<circle class="icon-stroke" cx="11" cy="11" r="7"></circle>
<line class="icon-stroke" x1="16.5" y1="16.5" x2="22" y2="22"></line>
</svg>
<div class="label">Search</div>
</div>
<div class="nav-item">
<svg class="nav-icon" viewBox="0 0 24 24">
<circle class="icon-stroke" cx="12" cy="12" r="8"></circle>
<path class="icon-stroke" d="M4 12h16M12 4a12 12 0 0 1 0 16"></path>
</svg>
<div class="label">Explore</div>
</div>
<div class="nav-item active">
<svg class="nav-icon" viewBox="0 0 24 24">
<path class="icon-fill" d="M12 21s-6-3.84-8.24-6.08C1.5 12.66 2.17 9.5 4.7 8.3c1.6-.77 3.6-.3 4.7 1 1.1-1.3 3.1-1.77 4.7-1 2.53 1.2 3.2 4.36.94 6.62C18 17.16 12 21 12 21z"></path>
</svg>
<div class="label">Trips</div>
</div>
<div class="nav-item">
<svg class="nav-icon" viewBox="0 0 24 24">
<circle class="icon-stroke" cx="12" cy="8" r="4"></circle>
<path class="icon-stroke" d="M4 20c2-3 5-4 8-4s6 1 8 4"></path>
</svg>
<div class="label">Profile</div>
</div>
</div>
<div class="home-indicator"></div>
</div>
</body>
</html> |