-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
152 lines (148 loc) · 3.16 KB
/
styles.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
142
143
144
145
146
147
148
149
150
151
152
.h5p-download-wrapper {
display: flex;
justify-content: flex-end;
width: 100%;
padding: 5px;
}
.h5p-download-wrapper .h5p-download {
display: flex;
align-items: center;
justify-content: center;
background-color: #f0f1fc;
-moz-box-shadow: 0 0 3px #1a237e;
-webkit-box-shadow: 0 0 3px #1a237e;
box-shadow: 0 0 3px #1a237e;
width: 43px;
height: 43px;
text-align: center;
line-height: 43px;
border-radius: 3px;
border: none;
outline: 0;
z-index: 1;
transition: transform 0.1s linear, color 0.1s linear, background-color 0.1s linear, box-shadow 0.1s linear;
}
.h5p-download-wrapper .h5p-download:hover {
background-color: #3c93f0;
-moz-box-shadow: 0 0 3px #76bbff;
-webkit-box-shadow: 0 0 3px #76bbff;
box-shadow: 0 0 3px #76bbff;
outline: 0;
}
.h5p-download-wrapper .h5p-download:hover .icon {
color: white;
filter: brightness(0) invert(1);
}
.h5p-download-wrapper .h5p-download:focus {
outline: 0;
}
.h5p-download-wrapper .h5p-download .icon {
width: 100%;
margin: 0 auto;
width: 100%;
border-radius: 0 !important;
}
.download-overlay {
display: flex;
justify-content: center;
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100vh;
background: rgba(29, 29, 29, 0.3);
z-index: 1000000;
opacity: 1;
}
.download-overlay .close-modal {
display: flex;
justify-content: center;
position: absolute;
z-index: 5;
align-items: center;
width: 43px;
height: 43px;
min-height: 43px;
background-color: rgba(0, 0, 0, 0.03);
border-radius: 50%;
border: 1px solid rgba(0, 0, 0, 0.08);
right: 0;
top: 0;
margin-top: 10px;
margin-right: 10px;
cursor: pointer;
transition: all 0.1s ease-out;
}
.download-overlay .close-modal .icon {
margin: 0;
width: 21.5px;
height: 21.5px;
}
.download-modal {
position: relative;
align-self: center;
background-color: white;
border-radius: 6px;
padding-top: 40px;
padding-bottom: 40px;
}
.download-modal h4 {
font-weight: bold;
width: 100%;
margin-bottom: 1.2em;
padding-left: 40px;
padding-right: 40px;
}
.download-modal .content {
display: flex;
justify-content: center;
position: relative;
width: 100%;
}
.download-modal .content .column {
display: flex;
justify-content: normal;
flex-direction: column;
flex-basis: 100%;
padding-left: 40px;
padding-right: 40px;
}
.download-modal .content .column .mt-2 {
margin-top: 0.5rem !important;
}
.download-modal .content .column .licence-image {
display: flex;
width: auto;
max-height: 50px;
margin: 10px 0;
}
.download-modal .content .column .licence {
display: flex;
justify-content: flex-start;
width: 100%;
background: #f0f1fc;
padding: 8px 16px;
border-radius: 4px;
}
.download-modal .content .column .licence > * {
align-self: center;
}
.download-modal .content .column .licence .btn {
margin-left: auto;
background: none;
}
.download-modal .content .column .licence .btn .icon {
margin: 0;
filter: brightness(0) invert(1);
}
.download-modal .content .column .licence .modal-icon {
width: 32px;
}
@media (max-width: 810px) {
.download-modal .content {
display: block;
}
.download-modal .content .column:first-child {
margin-bottom: 40px;
}
}