-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (91 loc) · 3.32 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alchemy Interior Design</title>
<style>
body {
background-color: rgb(30, 30, 30);
color: rgb(210, 210, 210);
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
margin: 0;
height: 100vh; /* Full viewport height */
display: flex; /* Use flexbox to center content */
justify-content: center; /* Horizontally center */
align-items: center; /* Vertically center */
text-align: center; /* Ensure text is centered */
}
h1 {
font-size: 3em;
margin: 0; /* Remove default margin */
}
h2 {
font-size: 2em;
margin: 10px 0 0 0; /* Space below the h1 but no space above */
}
.dropdown {
position: absolute;
top: 55px;
left: calc(20px + 0.5in);
}
.dropdown button {
font-size: 1.1em;
padding: 8px 16px;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #333;
min-width: 220px;
box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
z-index: 1;
}
.dropdown:hover .dropdown-content {
display: block;
}
.dropdown-content a, .dropdown-content span {
color: white;
padding: 12px 16px;
text-decoration: none;
display: block;
white-space: nowrap;
text-align: left; /* Left-align the text in the dropdown */
padding-left: 16px; /* Uniform padding for main headings */
}
.dropdown-content a.subheading {
padding-left: 32px; /* Add indentation for subheadings */
}
.dropdown-content a:hover {
background-color: #555;
}
.dropdown-content .no-click {
cursor: default;
color: lightgrey; /* Different color for non-clickable item */
}
</style>
</head>
<body>
<div>
<h1>Alchemy Interior Design</h1>
<h2>Selection of Completed Projects</h2>
</div>
<!-- Projects Dropdown Button aligned with heading and resized -->
<div class="dropdown">
<button>Projects</button>
<div class="dropdown-content">
<a href="projects/newjersey.html">Country House</a>
<span class="no-click">Iconic Mid-Century High Rise</span>
<a href="projects/p_lobby.html" class="subheading">Lobby</a>
<a href="projects/p_amspace.html" class="subheading">Amenities Space</a>
<a href="projects/p_roof.html" class="subheading">Roof Deck</a>
<a href="projects/upperwestapartment.html">Upper West Side Apartment</a>
<a href="projects/upperwestbrownstone.html">Upper West Side Brownstone</a>
<a href="projects/tribeca.html">Tribeca Apartment</a>
<a href="projects/cpw66.html">Central Park West Apartment - 66th St</a>
<a href="projects/cpw86.html">Central Park West Apartment - 86th St</a>
<a href="projects/5aveapt.html">5th Avenue Apartment</a>
</div>
</div>
</body>
</html>