-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspace-background.css
More file actions
45 lines (40 loc) · 865 Bytes
/
space-background.css
File metadata and controls
45 lines (40 loc) · 865 Bytes
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
@viewport {
zoom: 1.0;
width: extend-to-zoom;
}
@-ms-viewport {
width: device-width;
}
* {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
/* make transparent link selection, adjust last value opacity 0 to 1.0 */
}
/* prevent elastic scrolling */
html {
overflow: hidden;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
* {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none
}
html,
body {
-webkit-touch-callout: none;
/* prevent callout to copy image, etc when tap to hold */
-webkit-text-size-adjust: none;
/* prevent webkit from resizing text to fit */
-webkit-user-select: none;
/* prevent copy paste, to allow, change 'none' to 'text' */
height: 100%;
margin: 0px;
padding: 0px;
width: 100%;
background-attachment: fixed;
-webkit-overflow-scrolling: touch;
}