-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtiles2.html
141 lines (136 loc) · 4.38 KB
/
tiles2.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<style>
.container {background: transparent; font: 14px/1 Helvetica, sans-serif; height: auto; width: 100%;}
.row {background: transparent; height: auto; overflow: hidden; position: relative; width: inherit;}
.fltlft {float:left;}
.tile {color: #2d2d2d; float: left; height: 200px; margin: 5px; overflow: hidden; padding: 5px 5px 10px 10px; text-align: center; width: 200px; -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out;}
.tile img {margin-top: 15px; width:100px;-webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out;}
.tile h2 {color: #fff; font-size: 20px; text-align: left; line-height: 100px;-webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out;}
.tile h2 a {color: inherit;padding: 5px; text-decoration: none;}
.tile h2 a:hover {text-decoration:none; background: #fff; color: #3b3b3b;}
.tile:hover { cursor: pointer; -webkit-transform: scale(1.10); -moz-transform: scale(1.10); -o-transform: scale(1.10); transform: scale(1.10);}
.tile:hover h2 {line-height: 1;}
.tile:hover img {margin-left:100px; width:50px;}
.label {background:transparent; bottom: 0; color: inherit; font-size: 14px; height: 0%; line-height: 1.5; overflow: hidden; position: absolute; text-align: left; width: inherit; -webkit-transition: height 0.5s linear; -moz-transition: height: 0.5s linear; -o-transition: height 0.5s linear; transition: height 0.5s linear;}
.tile:hover .label {height: 50%;}
.label ul {indent: none;margin-left: -20px;}
.label ul li {list-style: none;}
.label ul li a {color: inherit; padding: 2px; text-decoration: none;}
.label ul li a:hover { background: #2d2d2d; color:#fff;}
.clearboth { clear:both;}
.one {background: #c31010;}
.two {background: #f3820f;}
.three {background: #4d68b6;}
.four {background: #03bd03;}
.five {background: #c959c9;}
.six {background: #27904c;}
.seven {background: #ff6300;}
.eight {background: #0096ff;}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="fltlft">
<div class="tile one">
<img src="img/docs.png">
<h2><a href="">Documents</a></h2>
<div class="label">
<ul>
<li><a href="#">Link</a></li>
<li><a href="">Link</a></li>
<li><a href="">More Links</a></li>
</ul>
</div>
</div>
<div class="tile two">
<img src="img/pictures.png">
<h2><a href="">Pictures</a></h2>
<div class="label">
<ul>
<li><a href="">Link</a></li>
<li><a href="">Link</a></li>
<li><a href="">More Links</a></li>
<li><a href="">Another Link</a></li>
</ul>
</div>
</div>
<br class="clearboth">
</div>
<div class="fltlft">
<div class="tile three">
<img src="img/manual.png">
<h2><a href="">Manuals</a></h2>
<div class="label">
<ul>
<li><a href="">Link</a></li>
<li><a href="">Link</a></li>
</ul>
</div>
</div>
<div class="tile four">
<img src="img/calendar.png">
<h2><a href="">Calendar</a></h2>
<div class="label">
<ul>
<li><a href="">Link</a></li>
<li><a href="">Link</a></li>
</ul>
</div>
</div>
<br class="clearboth">
</div>
<br class="clearboth">
</div>
<div class="row">
<div class="fltlft">
<div class="tile five">
<img src="img/tasks.png">
<h2><a href="">Tasks</a></h2>
<div class="label">
<ul>
<li><a href="">Link</a></li>
<li><a href="">Link</a></li>
</ul>
</div>
</div>
<div class="tile six">
<img src="img/contacts.png">
<h2><a href="">Contacts</a></h2>
<div class="label">
<ul>
<li><a href="">Link</a></li>
<li><a href="">Link</a></li>
</ul>
</div>
</div>
<br class="clearboth">
</div>
<div class="fltlft">
<div class="tile seven">
<img src="img/survey.png">
<h2><a href="">Surveys</a></h2>
<div class="label">
<ul>
<li><a href="">Link</a></li>
<li><a href="">Link</a></li>
</ul>
</div>
</div>
<div class="tile eight">
<img src="img/settings.png">
<h2><a href="">Settings</a></h2>
<div class="label">
<ul>
<li><a href="">Link</a></li>
<li><a href="">Link</a></li>
</ul>
</div>
</div>
<br class="clearboth">
</div>
<br class="clearboth">
</div>
</div>