forked from mknecht/gridscrolling.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgridscrolling.css
More file actions
54 lines (46 loc) · 1.06 KB
/
gridscrolling.css
File metadata and controls
54 lines (46 loc) · 1.06 KB
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
46
47
48
49
50
51
52
53
54
/**
* gridscrolling.css
* homepage: http://mknecht.github.io/gridscrolling.js/
* license: MIT
*
* Copyright (c) 2014 Murat Knecht
*/
.gridscrolling-looking-at {
background-color: blue;
}
.gridscrolling-overview-square {
background-color: #BBB;
}
#gridscrolling-overview {
border: solid 1px black;
}
@media (max-width: 1000px) {
#gridscrolling-overview {
background-color: grey;
}
}
.gridscrolling-marker {
position: fixed;
width: 0;
height: 0;
}
#gridscrolling-top-marker {
border-bottom: 20px solid grey;
border-left: 60px solid transparent;
border-right: 60px solid transparent;
}
#gridscrolling-bottom-marker {
border-top: 20px solid grey;
border-left: 60px solid transparent;
border-right: 60px solid transparent;
}
#gridscrolling-left-marker {
border-right: 20px solid grey;
border-top: 60px solid transparent;
border-bottom: 60px solid transparent;
}
#gridscrolling-right-marker {
border-left: 20px solid grey;
border-top: 60px solid transparent;
border-bottom: 60px solid transparent;
}