-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
bigpicture.css
42 lines (38 loc) · 969 Bytes
/
bigpicture.css
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
#bigpicture-container {
overflow: hidden;
position: fixed;
min-height: 100%;
min-width: 100%;
background: #D0D0D0;
background: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 500, from(#F0F0F0), to(#B0B0B0));
background: -webkit-radial-gradient(#F0F0F0, #B0B0B0);
background: -moz-radial-gradient(#F0F0F0, #B0B0B0);
background: -o-radial-gradient(#F0F0F0, #B0B0B0);
background: radial-gradient(#F0F0F0, #B0B0B0);
-webkit-font-smoothing: antialiased;
}
#bigpicture {
position: absolute;
}
.text {
font-family: "Arial";
line-height: 1.1;
outline: 0;
position: absolute;
min-width: 2px;
cursor: text;
word-wrap: break-word;
white-space: pre;
transition-duration: inherit;
}
.notransition {
transition-duration: 0s;
}
.noselect {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}