-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (95 loc) · 2.69 KB
/
index.html
File metadata and controls
110 lines (95 loc) · 2.69 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
<!DOCTYPE html>
<html>
<head lang="pt-br">
<meta charset="utf-8"/>
<title>Distinct JS</title>
<meta name="viewport" content="width=device-width">
<meta name="mobile-web-app-capable" content="yes">
<script src="js/villa.js"></script>
<link rel="stylesheet" href="css/villa-foundation.css"/>
<link rel="stylesheet" href="css/villa-grid.css"/>
<link rel="stylesheet" href="css/villa.css"/>
<link rel="stylesheet" href="css/mowe.css"/>
<link rel="stylesheet" href="css/mowe-ui-helpers.css"/>
<link rel="stylesheet" href="css/mowe-inputs.css"/>
<link rel="stylesheet" href="css/mowe-hero.css"/>
<link rel="stylesheet" href="css/mowe-font.css"/>
<link rel="stylesheet" href="css/mowe-navbar.css"/>
<link rel="stylesheet" href="css/mowe-structure.css"/>
<link rel="stylesheet" href="css/mowe-wow.css"/>
<link rel="stylesheet" href="css/mowe-pricelist.css"/>
<link rel="stylesheet" href="css/mowe-timeline.css"/>
<script src="js/jquery-2.1.1.min.js"></script>
<script src="js/distinct.js"></script>
<!--[if lt IE 9]>
<link rel="stylesheet" type="text/css" href="css/material-colors.css"/>
<script src="js/html5shiv.js"></script>
<script src="js/html5shiv-printshiv.js"></script>
<![endif]-->
</head>
<body>
<style>
.block {
padding: 0;
}
.block .content,
.block .nav {
align-items: center;
display: flex;
}
.block .content {
align-items: center;
height: 400px;
justify-content: center;
}
.block .nav {
height: 50px;
justify-content: space-around;
}
.block .nav .item {
background: none;
border: none;
color: inherit;
width: 100px;
}
.block .content .item {
display: none;
font-size: 2em;
}
.block .content .welcome {
font-family: 'Josefin Sans';
font-size: 6em;
font-weight: 100;
}
.block[class*="item"] .content .welcome {
display: none;
}
.block.item-1 .content .item:nth-of-type(1),
.block.item-2 .content .item:nth-of-type(2),
.block.item-3 .content .item:nth-of-type(3),
.block.item-4 .content .item:nth-of-type(4),
.block.item-5 .content .item:nth-of-type(5) {
display: block;
}
</style>
<!--.block>((.nav>button.item{menu $}*5)+(.content>.item{content $}*5+.welcome{DistinctJS))-->
<div class="block">
<div class="nav grey-900 font-white">
<button class="item">menu 1</button>
<button class="item">menu 2</button>
<button class="item">menu 3</button>
<button class="item">menu 4</button>
<button class="item">menu 5</button>
</div>
<div class="content">
<div class="item">content 1</div>
<div class="item">content 2</div>
<div class="item">content 3</div>
<div class="item">content 4</div>
<div class="item">content 5</div>
<div class="welcome">DistinctJS</div>
</div>
</div>
<script src="js/app.js"></script>
</body>
</html>