source: main/trunk/model-interfaces-dev/heritage-nz/iframe/heritage-nz-dl_files/quicklinks.css@ 32796

Last change on this file since 32796 was 32796, checked in by davidb, 5 years ago

Initial set of files to provide look and feel of Heritage NZ site, plus SVN clickable map in an iframe

  • Property svn:executable set to *
File size: 1.4 KB
Line 
1#mobile-quicklinks
2{
3 display: none;
4 width: 100%;
5 background-color: #fff;
6 position: static;
7 margin: 0;
8 height: 100%;
9 -webkit-transform: translate3d(0, -100%, 0);
10 -moz-transform: translate3d(0, -100%, 0);
11 -ms-transform: translate3d(0, -100%, 0);
12 -o-transform: translate3d(0, -100%, 0);
13 transform: translate3d(0, -100%, 0);
14 -webkit-transition: all 0.3s ease;
15 -moz-transition: all 0.3s ease;
16 -o-transition: all 0.3s ease;
17 -ms-transition: all 0.3s ease;
18 transition: all 0.3s ease;
19 z-index: 998;
20}
21
22 #mobile-quicklinks.show
23 {
24 display: block;
25 -webkit-transform: translate3d(0, 0, 0);
26 -moz-transform: translate3d(0, 0, 0);
27 -ms-transform: translate3d(0, 0, 0);
28 -o-transform: translate3d(0, 0, 0);
29 transform: translate3d(0, 0, 0);
30 }
31
32
33 #mobile-quicklinks h2
34 {
35 margin: 0 .5em;
36 }
37
38 #mobile-quicklinks ul
39 {
40 margin: 0;
41 padding: 0;
42 border: 0;
43 overflow: hidden;
44 }
45
46
47 #mobile-quicklinks ul li
48 {
49 padding: 0;
50 border-bottom: 1px solid #e3e3e3;
51 white-space: nowrap;
52 }
53
54 #mobile-quicklinks ul a
55 {
56 display: block;
57 padding: 1em 1.5em;
58 }
59
60 #mobile-quicklinks ul a:hover
61 {
62 background-color: #e3e3e3;
63 color: #333333;
64 }
65
66 #mobile-quicklinks ul a:after
67 {
68 color: #333;
69 content: "\00a0\00bb";
70 }
Note: See TracBrowser for help on using the repository browser.