-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
114 lines (101 loc) · 5.07 KB
/
index.html
File metadata and controls
114 lines (101 loc) · 5.07 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
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<link href="https://fonts.googleapis.com/css?family=Barlow+Semi+Condensed:200,600" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Shrikhand" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="main-header">
<h2 class="title">Store Menu</h2>
<span>Choose Theme
<a href="#" class="button" onclick="light();">LIGHT</a>
<a href="#" class="button" onclick="dark();">DARK</a>
</span>
</div>
<div id="container">
<div class="box">
<img src="images/burgers.jpg">
<div class="info primary">
<h3><span class="primary">Recipe:</span> The Best Burgers</h3>
<p>Leverage agile frameworks to provide a robust synopsis for high level overviews. Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.</p>
<a href="#" class="primary">More</a>
</div>
</div>
<div class="box">
<img src="images/dessert.jpg">
<div class="info secondary">
<h3><span class="secondary">Feature:</span> Delish Desserts</h3>
<p>Leverage agile frameworks to provide a robust synopsis for high level overviews. Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.</p>
<a href="#" class="secondary">More</a>
</div>
</div>
<div class="box">
<img src="images/mexican.jpg">
<div class="info tertiary">
<h3><span class="tertiary">Flavors:</span> Making It Mexican</h3>
<p>Leverage agile frameworks to provide a robust synopsis for high level overviews. Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.</p>
<a href="#" class="tertiary">More</a>
</div>
</div>
<div class="box">
<img src="images/drinks.jpg">
<div class="info primary">
<h3><span class="primary">Recipe:</span> Refreshing Drinks</h3>
<p>Leverage agile frameworks to provide a robust synopsis for high level overviews. Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.</p>
<a href="#" class="primary">More</a>
</div>
</div>
<div class="box">
<img src="images/seafood.jpg">
<div class="info secondary">
<h3><span class="secondary">Feature:</span> Seafood Combos</h3>
<p>Leverage agile frameworks to provide a robust synopsis for high level overviews. Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.</p>
<a href="#" class="secondary">More</a>
</div>
</div>
<div class="box">
<img src="images/produce.jpg">
<div class="info tertiary">
<h3><span class="tertiary">Flavors:</span> Sourcing Vegetables</h3>
<p>Leverage agile frameworks to provide a robust synopsis for high level overviews. Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.</p>
<a href="#" class="tertiary">More</a>
</div>
</div>
<div class="box">
<img src="images/breakfast.jpg">
<div class="info primary">
<h3><span class="primary">Recipe:</span> Healty Starts</h3>
<p>Leverage agile frameworks to provide a robust synopsis for high level overviews. Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.</p>
<a href="#" class="primary">More</a>
</div>
</div>
<div class="box">
<img src="images/bake.jpg">
<div class="info secondary">
<h3><span class="secondary">Feature:</span> Beginners Baking</h3>
<p>Leverage agile frameworks to provide a robust synopsis for high level overviews. Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.</p>
<a href="#" class="secondary">More</a>
</div>
</div>
</div>
<script type="text/javascript">
function setVariable(propertyName, value) {
document.documentElement.style.setProperty(propertyName, value);
}
function dark() {
setVariable('--main-bg', '#918d82');
setVariable('--alt-bg', '#57534c');
setVariable('--main-type', '#ddd');
}
function light() {
setVariable('--main-bg', '#fff');
setVariable('--alt-bg', '#f5f5f5');
setVariable('--main-type', '#333');
}
</script>
</body>
</html>