-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
169 lines (169 loc) · 4.62 KB
/
Copy pathindex.html
File metadata and controls
169 lines (169 loc) · 4.62 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Printing New Pages — The Inkwell Studio</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background: #d4c4a0;
color: #2a1a0a;
font-family: 'Times New Roman', Georgia, serif;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 2rem;
position: relative;
overflow: hidden;
}
body::before {
content: '';
position: fixed;
inset: 0;
background-image:
radial-gradient(ellipse at 0% 0%, rgba(90,60,20,0.15) 0%, transparent 50%),
radial-gradient(ellipse at 100% 100%, rgba(60,40,10,0.2) 0%, transparent 50%);
pointer-events: none;
}
/* Paper texture effect with CSS */
.paper {
background: #f2e8d0;
max-width: 640px;
width: 100%;
padding: 3.5rem 3.5rem;
position: relative;
z-index: 2;
box-shadow:
0 2px 4px rgba(0,0,0,0.1),
0 8px 20px rgba(0,0,0,0.15),
inset 0 1px 0 rgba(255,255,255,0.6);
}
.paper::before {
content: '';
position: absolute;
top: 0; left: 50px;
width: 2px;
height: 100%;
background: rgba(200,100,80,0.3);
}
.ink-header {
border-bottom: 3px double #2a1a0a;
padding-bottom: 1rem;
margin-bottom: 1.5rem;
display: flex;
align-items: flex-end;
justify-content: space-between;
flex-wrap: wrap;
gap: 0.5rem;
}
.studio-name {
font-size: 1.5rem;
font-weight: 700;
font-style: italic;
color: #1a0a00;
letter-spacing: 0.02em;
}
.issue-info {
font-size: 0.7rem;
letter-spacing: 0.1em;
color: #6a4a2a;
text-align: right;
font-family: Arial, sans-serif;
line-height: 1.5;
}
.big-headline {
font-size: clamp(2rem, 5vw, 3rem);
font-weight: 900;
text-transform: uppercase;
letter-spacing: 0.05em;
text-align: center;
color: #1a0a00;
border-bottom: 2px solid #2a1a0a;
padding-bottom: 0.75rem;
margin-bottom: 1rem;
}
.sub-headline {
text-align: center;
font-style: italic;
color: #4a2a0a;
font-size: 1rem;
margin-bottom: 1.5rem;
}
.columns {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
border-top: 1px solid #8a6a3a;
padding-top: 1.5rem;
margin-bottom: 1.5rem;
}
.col-text {
font-size: 0.88rem;
line-height: 1.75;
color: #2a1a0a;
text-align: justify;
hyphens: auto;
}
.col-text p { margin-bottom: 0.6rem; }
.drop-cap::first-letter {
float: left;
font-size: 3.5em;
line-height: 0.75;
margin-right: 0.1em;
font-weight: 900;
color: #1a0a00;
padding-top: 0.05em;
}
.pull-box {
border: 1px solid #8a6a3a;
border-left: 4px solid #2a1a0a;
padding: 0.75rem 1rem;
font-style: italic;
font-size: 0.95rem;
color: #3a1a00;
margin-top: 0.75rem;
background: rgba(42,26,10,0.04);
}
.footer-rule {
border-top: 1px solid #8a6a3a;
border-bottom: 1px solid #8a6a3a;
padding: 0.4rem 0;
text-align: center;
font-size: 0.7rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: #6a4a2a;
font-family: Arial, sans-serif;
}
@media (max-width: 520px) {
.paper { padding: 2rem 1.5rem; }
.columns { grid-template-columns: 1fr; }
.paper::before { display: none; }
}
</style>
</head>
<body>
<div class="paper">
<div class="ink-header">
<div class="studio-name">The Inkwell Studio</div>
<div class="issue-info">Creative Agency<br>Est. 2011</div>
</div>
<div class="big-headline">Printing New Pages</div>
<div class="sub-headline">We are composing something entirely new. Stand by for the next edition.</div>
<div class="columns">
<div class="col-text drop-cap">
<p>The presses are running. Every element of our new website is being set by hand — metaphorically speaking — with the same care and craft we bring to every client project.</p>
<p>We believe in taking the time to do things properly. Our old site served us well, but the story has moved on, and so must the page.</p>
</div>
<div class="col-text">
<p>Good design, like good writing, rewards patience. We are not rushing this. Every layout, every typographic choice, every piece of copy is being considered and reconsidered.</p>
<div class="pull-box">"A blank page is not an absence of ideas — it's an invitation."</div>
</div>
</div>
<div class="footer-rule">New site coming soon • Thank you for reading • The Inkwell Studio</div>
</div>
</body>
</html>