-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
96 lines (87 loc) · 1.3 KB
/
style.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
@import "node_modules/ol/ol.css";
html, body {
margin: 0;
height: 100%;
}
#map {
top: 0;
height: 50%;
width: 100%;
}
#bottomContainer {
height: 50%;
bottom: 0;
}
#nli_images {
height: 50%;
white-space: nowrap;
overflow-x: scroll;
}
#mekoros {
height: 50%;
overflow-y: scroll;
}
.nliImage {
width: auto;
height: 100%;
cursor: pointer;
display: inline-block;
margin-inline-end: 5px;
}
#detail, #fullText {
position: absolute;
top: 0;
bottom: 0;
left:0;
right:0;
width: 100%;
height: 100%;
background: rgba(0,0,0,.7);
display: none;
text-align: center;
cursor: pointer;
}
#placename {
position: absolute;
}
#pointer {
width: 20px;
height: 20px;
border-radius: 20px;
border: 1px solid black;
left: 50%;
top:25%;
position: absolute;
background-color: red
}
#image_det {
height: 100%;
width: 100%;
object-fit: contain;
margin: auto
}
.title {
font-size: 30px;
margin-bottom: 10px;
}
.text {
font-size: 24px;
margin-bottom: 30px;
cursor: pointer;
}
.text.clamped {
-webkit-line-clamp: 2;
display: -webkit-box;
-webkit-box-orient: vertical;
overflow: hidden;
}
#caption {
position: absolute;
bottom: 0;
font-size: 24px;
background: rgba(0, 0, 0,.5);
width: 100%;
text-align: center;
color: white;
direction: rtl;
}