00001 <?php header("Content-type: text/css"); ?>
00002 .video {
00003 position: relative;
00004 padding: 1em;
00005 float: left;
00006 background-color: #003366;
00007 margin-top: 1em;
00008 margin-left: 1em;
00009 width: <?php echo (_or(setting('web_video_thumbnail_width', hostname), 96)+106); ?>px;
00010 height: <?php echo (_or(setting('web_video_thumbnail_height', hostname), 140)+28 ); ?>px;
00011 border: 1px solid black;
00012 }
00013
00014 .video .title {
00015 font-weight: bold;
00016 margin-bottom: .5em;
00017 height: 2.25em;
00018 overflow: hidden;
00019 }
00020
00021 .video img {
00022 float: left;
00023 padding-right: 1em;
00024 }
00025
00026 .video .command {
00027 position: absolute;
00028 bottom: 1em;
00029 right: 1em;
00030 }
00031
00032 #path {
00033 position: relative;
00034 padding: 1em;
00035 float: left;
00036 background-color: #102923;
00037 margin-top: 1em;
00038 margin-left: 1em;
00039 border: 1px solid black;
00040 min-width: <?php echo (_or(setting('web_video_thumbnail_width', hostname), 96)+106); ?>px;
00041 min-height: <?php echo (_or(setting('web_video_thumbnail_height', hostname), 140)+28 ); ?>px;
00042 }
00043
00044 #path .active {
00045 color: yellow;
00046 }
00047
00048 #window {
00049 position: fixed;
00050 left: 35%;
00051 right: 35%;
00052 width: 30%;
00053 top: 35%;
00054 background-color: green;
00055 padding-top: 1em;
00056 z-index: 10;
00057 border: 2px solid gray;
00058 }
00059
00060 #window_content a {
00061 padding-right: 1em;
00062 padding-left: 1em;
00063 }
00064
00065 #window iframe {
00066 width: 100%;
00067 border: 0px;
00068 height: 250px;
00069 }
00070
00071 #window_title {
00072 position: absolute;
00073 top: 1px;
00074 left: 1em;
00075 font-weight: bold;
00076 }
00077
00078 .popup {
00079 width: 30%;
00080 font-size: 9pt;
00081 }
00082
00083 .popup dt {
00084 clear: left;
00085 float: left;
00086 padding-top: 3px;
00087 white-space: nowrap;
00088 width: 6em;
00089 font-weight: bold;
00090 text-align: right;
00091 }
00092
00093 .popup dd {
00094 margin-left: 6.5em;
00095 padding-top: 3px;
00096 }