blob: 7c70a4d42bbfc52e15e1c302b551e71f6f589ac2 (
plain)
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
55
56
57
58
59
60
61
|
.jakrawal-left {
position: absolute;
top: 0;
left: 0;
width: 20%;
min-width: 140px;
height: 100%;
/*
background-image: url(/last-museum/static/media/last-museum/jakrawal-nilthamrong/left.png);
background-position: left 40px center;
background-repeat: no-repeat;
*/
cursor: url(/last-museum/static/media/last-museum/jakrawal-nilthamrong/left.png) 50 50, pointer;
}
.jakrawal-right {
position: absolute;
top: 0;
right: 0;
width: 20%;
min-width: 140px;
height: 100%;
/*
background-image: url(/last-museum/static/media/last-museum/jakrawal-nilthamrong/right.png);
background-position: right 40px center;
background-repeat: no-repeat;
*/
cursor: url(/last-museum/static/media/last-museum/jakrawal-nilthamrong/right.png) 50 50, pointer;
}
.jakrawal-text {
position: absolute;
bottom: 2rem;
left: 0;
width: 100%;
padding: 0 5rem 0 5rem;
/*color: rgba(255, 121, 13, 1.0);*/
color: rgba(255, 121, 13, 1.0);
font-family: "Druk Wide";
font-size: 1.66vw;
transition: opacity 0.2s;
opacity: 0;
text-align: left;
}
.jakrawal-text.hovering {
opacity: 1;
}
.jakrawal-text-icon {
position: absolute;
top: 1rem;
right: 3rem;
cursor: url(/last-museum/static/uploads/3/cursor/The_Last_Museum_-_Symbols-103.png), pointer;
}
.jakrawal-full{
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
cursor: 'url(/last-museum/static/uploads/3/cursor/The_Last_Museum_-_Symbols-103.png) 50 50, pointer',
}
|