summaryrefslogtreecommitdiffstats
path: root/HTML/Chapter/Ch. 8 hands-on assignments/Ch8_msglm/ch8resp2/8.9.index.html
blob: c0b856b7a763abb4342ddfce0e61f2c299daca4b (plain) (blame)
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
<!DOCTYPE html>
<html lang="en">
    <head>
        <title>Lighthouse Bistro</title>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <style>
* { box-sizing: border-box;
    margin: 0;
}

body {font-family: Verdana, Arial, sans-serif;
}

#wrapper { background-color:  #B3C7E6; 
}

header { color: #00005D; 
    background-color: #869DC7;
    background-image: url(8.9.light.gif);
    background-repeat: no-repeat;		
    background-size: auto 100%;
    padding: .5em 0 .5em 5.5em;
}
main {   background-color: #FFFFFF;
    color: #000000;
    padding: 1em; 
}
aside { text-align: center; }

footer {  background-color: #869DC7;
    font-size:70%;
    text-align: center;
    padding: 0.5em 0;
}

h2 { color: #869DC7; }
img { padding: 1em; }

/* Styles to configure navigation links as horizontal areas */
nav ul { list-style-type: none;
    padding-left: 0; 
    border-top: 1px solid #EEEEEE;
}
nav li { border-bottom: 1px solid #EEEEEE;  
    text-align: center;
    padding-top: .5em;
    padding-bottom: .5em;
}
nav a { text-decoration: none;
    font-weight: bold;
}
nav a:link { color: #00005D; }
nav a:hover { color: #FF0000; }

/* make the current page's link look different */
nav #page { font-weight: bold;
    color: #FEFEFE; }

/* Force older versions of Internet Explorer to display these HTML5 elements with block display. */
header, nav, main, footer, aside, figure { display: block; }

@media (min-width: 600px) {
    nav ul { 
        display: flex; flex-flow: row nowrap;
        justify-content: space-around; 
    }
    nav ul li { 
        border-bottom: none; 
    }

    #wrapper { 
        display: grid;
        grid-template-columns: 55% auto;
        grid-template-rows: auto auto auto auto; 
    }
    header  { 
        grid-row: 1 / 2;
        grid-column: 1 / 3; 
    }
    nav     { 
        grid-row: 2 / 3;
        grid-column: 1 / 3; 
    }
    main    { 
        grid-row: 3 / 4;
        grid-column: 1 / 2; 
    }
    aside   { 
        grid-row: 3 / 4;
        grid-column: 2 / 3; 
    }
    footer  { 
        grid-row: 4 / 5;
        grid-column: 1 / 3; 
    }
}

    @media (min-width: 1024px) {
            body {
                background-color: #000066; 
            }
            nav ul {
                display: flex;
                flex-direction: column;
                flex-wrap: nowrap; 
            }
            #wrapper {
                width: 80%;
                margin: auto; max-width: 1200px;
                display: grid;
                grid-template-columns: 150px auto auto;
                grid-template-rows: auto auto auto ; 
            }
            header  {
                grid-row: 1 / 2; grid-column: 1 / 4; 
            }
            nav     {
                grid-row: 2 / 3; grid-column: 1 / 2; 
            }
            main    {
                grid-row: 2 / 3; grid-column: 2 / 3; 
            }
            aside   {
                grid-row: 2 / 3; grid-column: 3 / 4; 
            }
            footer  {
                grid-row: 3 / 4; grid-column: 1 / 4; 
            }
        }

        </style> 
    </head>
    <body>
        <div id="wrapper">
            <header>
                <h1>Lighthouse Bistro</h1>
            </header>
            <nav>
                <ul>
                    <li id="page">Home</li>
                    <li><a href="rooms.html">Menu</a></li>
                    <li><a href="directions.html">Directions</a></li>
                    <li><a href="contact.html">Contact</a></li>
                </ul>
            </nav>
            <main>
                <h2>Locally Roasted Coffee</h2>
                <p>Indulge in the aroma of freshly ground roast free-trade coffee. Specialty drinks are available hot or cold.</p>
                <h2>Specialty Pastries</h2>
                <p>Enjoy a selection of our fresh-baked, organic pastries, including 
                fresh-fruit muffins, scones, croissants, and cinnamon rolls.</p>
                <h2>Lunchtime is Anytime</h2>
                <p>Savor delicious wraps and sandwiches on hearty, whole-grain breads with locally-grown salad, fruit, and vegetables. </p>
                <h2>Panoramic View</h2>
                <p>Take in some scenery! The top of our lighthouse offers a panoramic view of the countryside. Challenge your friends to climb our 100-stair tower.</p> 
            </main>
            <aside>
                <figure>
                    <img src="8.9.lighthouse.jpg" width="250" height="355" alt="Lighthouse Island">
                </figure>
            </aside> 
            <footer>
                Copyright &copy;
            </footer>
        </div>
    </body>
</html>