-
Notifications
You must be signed in to change notification settings - Fork 1
/
infobox.css
141 lines (140 loc) · 2.77 KB
/
infobox.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
.h5p-infobox {
justify-content: space-around;
display: flex!important;
flex-direction: column;
}
.h5p-infobox-hidden {
width: 0!important;
padding: 0!important;
border: none!important;
box-shadow: none!important;
}
.h5p-infobox .infobox-content {
overflow-y: auto;
scrollbar-color: #ccc #f5f5f5;
scrollbar-width: auto;
height: 100%;
/*display: flex;*/
justify-content: center;
align-items: center;
}
.h5p-infobox .infobox-fit .infobox-image-container {
/*height: 100%;*/
overflow: auto;
}
.h5p-infobox .infobox-fit .infobox-content {
display: flex;
flex-direction: column;
}
.h5p-infobox .infobox-scroll .infobox-image-container {
height: auto;
}
.h5p-infobox .h5p-infobox-container {
width: 100%;
max-width: -webkit-fill-available;
max-width: -moz-available;
padding: 10px;
border: 1px solid #ccc;
box-shadow: 2px 2px 4px #ccc;
display: flex;
flex-direction: column;
justify-content: space-between;
visibility: hidden;
}
.h5p-infobox.h5p-fullscreen .h5p-infobox-container {
justify-content: space-between;
height: -webkit-fill-available!important;
height: -moz-available;
max-height: 100%;
}
.h5p-infobox.h5p-fullscreen {
background-color: white;
/*height: -webkit-fill-available!important;*/
}
.h5p-infobox .infobox-image-container {
display: flex;
justify-content: space-around;
/*height: -webkit-fill-available;*/
}
.h5p-infobox .infobox-image {
max-width: 100%;
height: auto;
}
.h5p-infobox .infobox-header {
font-family: fantasy;
color: #797979;
}
.h5p-infobox .infobox-text {
width: auto;
margin: 16px;
font-family: sans-serif;
font-size: 20px;
font-weight: bold;
line-height: 24px;
text-align: center;
}
.infobox-durationcontainer,
.infobox-backcontainer {
height: 25px;
border: 1px solid #ccc;
box-shadow: 0px 0px 5px 1px #ccc;
margin-top: 10px;
}
.h5p-fullscreen .infobox-durationcontainer,
.h5p-fullscreen .infobox-backcontainer {
height: 35px;
}
.infobox-durationstatus {
height: 100%;
width: 0%;
background-color: #1a73d9;
animation-fill-mode: forwards!important;
display: flex;
align-items: center;
justify-content: flex-end;
}
.infobox-btn {
cursor: pointer;
}
.infobox-btn:hover,
.infobox-btn:focus {
background-color: #1356a3;
}
.infobox-btn:active {
background-color: #104888;
}
.infobox-back {
background-color: #1a73d9;
display: flex;
align-items: center;
justify-content: flex-start;
}
.infobox-icon {
color: white;
font-size: large;
padding: 10px 10px 7.5px 10px;
opacity: 0;
transition: 0.6s;
}
.infobox-100 {
height: 100px;
}
.infobox-200 {
height: 200px;
}
.infobox-300 {
height: 300px;
}
.infobox-400 {
height: 400px;
}
.infobox-500 {
height: 500px;
}
.infobox-600 {
height: 600px;
}
@keyframes progress {
from {width: 0%;}
to {width: 100%;}
}