[title] prevent user select to this webapp by adding -webkit-user-select
[samples/web/ImageRotation.git] / css / style.css
1 * {
2     margin: 0;
3     padding: 0;
4     -webkit-tap-highlight-color: rgba(0,0,0,0);
5     -webkit-user-select: none;
6 }
7
8 h1 {
9     font-size: 1.4em;
10     margin: 10px 0 5px 10px;
11     color: #6587ac;
12 }
13
14 .holder {
15     text-align: center;
16     padding: 15px 0;
17     margin: 0 auto;
18     border: 2px dotted #d9d9d9;
19     perspective: 1000;
20     -webkit-perspective: 1000;
21 }
22 .holder img {
23     max-width: 100%;
24 }