File size: 5,841 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 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 | <html>
<head>
<meta charset="UTF-8">
<title>Calendar Settings - General</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
#render-target {
position: relative;
width: 1080px;
height: 2400px;
overflow: hidden;
background: #0f1111; /* app surface (dark) */
color: #EDEDED;
}
/* Status bar */
.status-bar {
height: 90px;
padding: 0 40px;
display: flex;
align-items: center;
justify-content: space-between;
color: #DADADA;
font-size: 34px;
letter-spacing: 0.5px;
}
.status-right {
display: flex;
gap: 30px;
align-items: center;
}
.status-icon {
width: 28px; height: 28px; border-radius: 50%;
background: #CFCFCF;
opacity: 0.8;
}
/* App bar */
.app-bar {
display: flex;
align-items: center;
padding: 10px 32px 20px 20px;
height: 140px;
}
.app-title {
font-size: 52px;
font-weight: 600;
margin-left: 18px;
flex: 1;
}
.icon-btn {
width: 72px; height: 72px; display: flex; align-items: center; justify-content: center;
border-radius: 36px;
}
.icon-svg { fill: #EDEDED; }
/* Content list */
.content {
padding: 10px 40px 40px 40px;
}
.item {
padding: 34px 8px 34px 8px;
border-bottom: 1px solid #1a1a1a;
display: flex;
align-items: center;
gap: 20px;
}
.item .left {
flex: 1;
}
.label {
font-size: 38px;
line-height: 46px;
font-weight: 600;
}
.sublabel {
font-size: 28px;
color: #9AA0A6;
margin-top: 10px;
}
.value {
font-size: 34px;
color: #CFCFCF;
}
/* Switch */
.switch {
position: relative;
width: 220px;
height: 96px;
border-radius: 48px;
background: #3C3C3C;
box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.switch .knob {
position: absolute;
top: 8px;
left: 8px;
width: 80px;
height: 80px;
border-radius: 40px;
background: #BEBEBE;
box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.switch.on { background: #63C178; }
.switch.on .knob { left: 132px; background: #DDF3E1; }
.section-title {
font-size: 34px;
color: #B8B8B8;
padding: 36px 8px 18px 8px;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div>9:54</div>
<div class="status-right">
<div class="status-icon"></div>
<div class="status-icon"></div>
<div class="status-icon"></div>
<div class="status-icon"></div>
</div>
</div>
<!-- App bar -->
<div class="app-bar">
<div class="icon-btn">
<svg class="icon-svg" width="52" height="52" viewBox="0 0 24 24">
<path d="M15.41 7.41 14 6l-6 6 6 6 1.41-1.41L10.83 12z"/>
</svg>
</div>
<div class="app-title">General</div>
<div class="icon-btn">
<svg class="icon-svg" width="52" height="52" viewBox="0 0 24 24">
<circle cx="12" cy="5" r="2.2"></circle>
<circle cx="12" cy="12" r="2.2"></circle>
<circle cx="12" cy="19" r="2.2"></circle>
</svg>
</div>
</div>
<!-- Content -->
<div class="content">
<!-- Start of week -->
<div class="item">
<div class="left">
<div class="label">Start of the week</div>
</div>
<div class="value">Sunday</div>
</div>
<!-- Use device time zone -->
<div class="item">
<div class="left">
<div class="label">Use device time zone</div>
</div>
<div class="switch on"><div class="knob"></div></div>
</div>
<div class="item" style="border-bottom:none; padding-top:14px; padding-bottom:28px;">
<div class="left">
<div class="sublabel">Time zone</div>
</div>
<div class="sublabel">India Standard Time GMT+5:30</div>
</div>
<div style="height:1px; background:#1a1a1a; margin:0 8px 0 8px;"></div>
<!-- Alternate calendar -->
<div class="item">
<div class="left">
<div class="label">Alternate calendar</div>
</div>
<div class="value">No alternate calendar</div>
</div>
<!-- Show week number -->
<div class="item">
<div class="left">
<div class="label">Show week number</div>
</div>
<div class="switch"><div class="knob"></div></div>
</div>
<!-- Show declined events -->
<div class="item">
<div class="left">
<div class="label">Show declined events</div>
</div>
<div class="switch on"><div class="knob"></div></div>
</div>
<!-- Display shorter entries the same size as 30-minute entries -->
<div class="item">
<div class="left">
<div class="label">Display shorter entries the same size as 30-minute entries</div>
</div>
<div class="switch"><div class="knob"></div></div>
</div>
<!-- Default event duration -->
<div class="item">
<div class="left">
<div class="label">Default event duration</div>
</div>
</div>
<!-- Adding invitations -->
<div class="item">
<div class="left">
<div class="label">Adding invitations</div>
</div>
</div>
<!-- Add video conferencing -->
<div class="item">
<div class="left">
<div class="label">Add video conferencing</div>
</div>
</div>
<!-- Theme -->
<div class="item">
<div class="left">
<div class="label">Theme</div>
</div>
<div class="value">Dark</div>
</div>
<!-- Notifications header -->
<div class="section-title">Notifications</div>
<!-- Notify on this device -->
<div class="item">
<div class="left">
<div class="label">Notify on this device</div>
</div>
<div class="switch on"><div class="knob"></div></div>
</div>
</div>
</div>
</body>
</html> |