feat: Add comprehensive documentation suite and reorganize project structure
- Created complete documentation in docs/ directory - Added PROJECT_OVERVIEW.md with feature highlights and getting started guide - Added ARCHITECTURE.md with system design and technical details - Added SECURITY.md with comprehensive security implementation guide - Added DEVELOPMENT.md with development workflows and best practices - Added DEPLOYMENT.md with production deployment instructions - Added API.md with complete REST API documentation - Added CONTRIBUTING.md with contribution guidelines - Added CHANGELOG.md with version history and migration notes - Reorganized all documentation files into docs/ directory for better organization - Updated README.md with proper documentation links and quick navigation - Enhanced project structure with professional documentation standards
This commit is contained in:
53
f_scripts/shared/videojs/videojs.suggestedVideoEndcap.css
Normal file
53
f_scripts/shared/videojs/videojs.suggestedVideoEndcap.css
Normal file
@@ -0,0 +1,53 @@
|
||||
.vjs-suggested-video-endcap {
|
||||
background: rgba(0, 0, 0, .7);
|
||||
display: none;
|
||||
height: 95%;
|
||||
left: 0;
|
||||
overflow: hidden;
|
||||
padding: 20px;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
}
|
||||
.vjs-suggested-video-endcap.is-active {
|
||||
display: block;
|
||||
}
|
||||
.vjs-suggested-video-endcap-container {
|
||||
-webkit-align-content: center;
|
||||
align-content: center;
|
||||
-webkit-align-items: baseline;
|
||||
align-items: baseline;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flex;
|
||||
display: flex;
|
||||
-webkit-flex-direction: row;
|
||||
-ms-flex-direction: row;
|
||||
flex-direction: row;
|
||||
-webkit-flex-wrap: wrap;
|
||||
-ms-flex-wrap: wrap;
|
||||
flex-wrap: wrap;
|
||||
-webkit-justify-content: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.vjs-suggested-video-endcap-header {
|
||||
font: 700 16px/1 Arial, sans-serif;
|
||||
margin: 0 auto 20px;
|
||||
text-align: center;
|
||||
}
|
||||
.vjs-suggested-video-endcap-link {
|
||||
font-size: 14px;
|
||||
margin-bottom: 20px;
|
||||
margin-right: 20px;
|
||||
position: relative;
|
||||
width: 23%;
|
||||
}
|
||||
.vjs-suggested-video-endcap-link:nth-of-type(4n),
|
||||
.vjs-suggested-video-endcap-link:last-of-type {
|
||||
margin-right: 0;
|
||||
}
|
||||
.vjs-suggested-video-endcap-img {
|
||||
height: auto;
|
||||
margin-bottom: 5px;
|
||||
width: 100%;
|
||||
}
|
||||
Reference in New Issue
Block a user