source: other-projects/nz-flag-design/trunk/main-form/lib-slider/css/swipe-page.css@ 29530

Last change on this file since 29530 was 29530, checked in by davidb, 9 years ago

First cut at overview web pages to nz-flag-design project

  • Property svn:executable set to *
File size: 1.2 KB
Line 
1/* Set the background image sources */
2/*
3#newyork { background-image: url(../img/newyork.jpg); }
4#buenosaires { background-image: url(../img/buenosaires.jpg); }
5#paris { background-image: url(../img/paris.jpg); }
6#capetown { background-image: url(../img/capetown.jpg); }
7#seoul { background-image: url(../img/seoul.jpg); }
8#sydney { background-image: url(../img/sydney.jpg); }
9*/
10
11/* Background settings */
12/*.demo-page {
13 background-size: cover;
14 background-position: center center;
15 background-repeat: no-repeat;
16}*/
17
18/* Transparent footer */
19.demo-page .ui-footer {
20 background: none;
21 border: none;
22 bottom: 0;
23}
24
25/* The footer won't have a height because there are only two absolute positioned elements in it.
26So we position the buttons from the bottom. */
27.control.ui-btn-left, .trivia-btn.ui-btn-right {
28 top: auto;
29 bottom: 7px;
30 margin: 0;
31}
32/* Custom styling for the trivia source */
33/*small {
34 font-size: .75em;
35 color: #666;
36}*/
37/* Prevent text selection while swiping with mouse */
38.demo-page .ui-header, .ui-title, .control .ui-btn, .trivia-btn {
39 -webkit-user-select: none;
40 -moz-user-select: none;
41 -ms-user-select: none;
42 -o-user-select: none;
43 user-select: none;
44}
Note: See TracBrowser for help on using the repository browser.