]> O.S.I.I.S - jp/vkvg.git/commitdiff
wip
authorJean-Philippe Bruyère <jp_bruyere@hotmail.com>
Wed, 15 Dec 2021 19:16:48 +0000 (20:16 +0100)
committerJean-Philippe Bruyère <jp_bruyere@hotmail.com>
Wed, 15 Dec 2021 19:16:48 +0000 (20:16 +0100)
doc/Doxygen.in
doc/doxy_theme/DoxygenLayout.xml
doc/doxy_theme/custom.css
doc/doxy_theme/header.html

index fd74c4e7e9a47f883175a0634cd4088eaffedbcf..abc21ecaee9cb3914ed0160d33a7cd90abaa3217 100644 (file)
@@ -188,9 +188,9 @@ HTML_OUTPUT            = html
 HTML_FILE_EXTENSION    = .html
 HTML_STYLESHEET        = doc/custom.css
 
-#HTML_HEADER            = doc/header.html
-#HTML_FOOTER            = doc/footer.html
-#HTML_EXTRA_STYLESHEET  = 
+HTML_HEADER            = doc/header.html
+HTML_FOOTER            = doc/footer.html
+#HTML_EXTRA_STYLESHEET  = doc/search.css
 HTML_EXTRA_FILES       =
 HTML_COLORSTYLE_HUE    = 234
 HTML_COLORSTYLE_SAT    = 26
index e77daaacc464ce8f726138f07fecde8854bbf537..3513b7fbe625715d0d43c50b539d0b3dd799994a 100644 (file)
     </tab>
     <tab type="interfaces" visible="yes" title="">
       <tab type="interfacelist" visible="yes" title="" intro=""/>
-      <tab type="interfaceindex" visible="$ALPHABETICAL_INDEX" title=""/> 
+      <tab type="interfaceindex" visible="$ALPHABETICAL_INDEX" title=""/>
       <tab type="interfacehierarchy" visible="yes" title="" intro=""/>
     </tab>
     <tab type="classes" visible="yes" title="">
       <tab type="classlist" visible="yes" title="" intro=""/>
-      <tab type="classindex" visible="$ALPHABETICAL_INDEX" title=""/> 
+      <tab type="classindex" visible="$ALPHABETICAL_INDEX" title=""/>
       <tab type="hierarchy" visible="yes" title="" intro=""/>
       <tab type="classmembers" visible="yes" title="" intro=""/>
     </tab>
     <tab type="structs" visible="yes" title="">
       <tab type="structlist" visible="yes" title="" intro=""/>
-      <tab type="structindex" visible="$ALPHABETICAL_INDEX" title=""/> 
+      <tab type="structindex" visible="$ALPHABETICAL_INDEX" title=""/>
     </tab>
     <tab type="exceptions" visible="yes" title="">
       <tab type="exceptionlist" visible="yes" title="" intro=""/>
-      <tab type="exceptionindex" visible="$ALPHABETICAL_INDEX" title=""/> 
+      <tab type="exceptionindex" visible="$ALPHABETICAL_INDEX" title=""/>
       <tab type="exceptionhierarchy" visible="yes" title="" intro=""/>
     </tab>
     <tab type="files" visible="yes" title="">
       <tab type="filelist" visible="yes" title="" intro=""/>
       <tab type="globals" visible="yes" title="" intro=""/>
     </tab>
-    <tab type="examples" visible="yes" title="" intro=""/>  
+    <tab type="examples" visible="yes" title="" intro=""/>
   </navindex>
 
   <!-- Layout definition for a class page -->
index 887c5970be55069a12c261308557f0a01f8b66da..97c5f198da6cb0ae23510e74a2adb835fec86fab 100644 (file)
@@ -13,19 +13,75 @@ p.definition {
     font: 400 14px/22px Roboto, sans-serif;
 }
 
+html {
+    height: 97%;
+}
+
 body {
     background-color: #DDD;
     color: black;
     margin: auto;
-    width: 80%;
+    max-width: 760px;
+    border: thin solid black;
+    background-color: white;
 }
 
+div.PageDoc {}
+
 div.contents {
     margin: auto;
     padding: 10px;
-    width: 80%;
-    border: thin solid black;
-    background-color: white;
+    /*width: 80%;*/
+}
+
+@import url(https://fonts.googleapis.com/css?family=Open+Sans);
+body {
+    background: #f2f2f2;
+    font-family: 'Open Sans', sans-serif;
+}
+
+.search {
+    width: 100%;
+    position: relative;
+    display: flex;
+}
+
+.searchTerm {
+    width: 100%;
+    border: 3px solid #00B4CC;
+    border-right: none;
+    padding: 5px;
+    height: 20px;
+    border-radius: 5px 0 0 5px;
+    outline: none;
+    color: #9DBFAF;
+}
+
+.searchTerm:focus {
+    color: #00B4CC;
+}
+
+.searchButton {
+    width: 40px;
+    height: 36px;
+    border: 1px solid #00B4CC;
+    background: #00B4CC;
+    text-align: center;
+    color: #fff;
+    border-radius: 0 5px 5px 0;
+    cursor: pointer;
+    font-size: 20px;
+}
+
+
+/*Resize the wrap to see the search bar change!*/
+
+.wrap {
+    width: 30%;
+    position: absolute;
+    top: 50%;
+    left: 50%;
+    transform: translate(-50%, -50%);
 }
 
 
@@ -39,12 +95,11 @@ h1.groupheader {
     font: 400 14px/28px Roboto, sans-serif;
     font-size: 150%;
     font-weight: bold;
-    width: 80%;
-    margin: auto;
+    margin: 0 auto;
     background-color: #ccc;
     color: #444;
     padding: 10px;
-    border: thin solid #2c2c2c;
+    /*border: thin solid #2c2c2c;*/
 }
 
 h2.groupheader {
@@ -1168,7 +1223,7 @@ div.header {
 }
 
 div.headertitle {
-    padding: 5px 5px 5px 10px;
+    /*padding: 5px 5px 5px 10px;*/
 }
 
 .PageDocRTL-title div.headertitle {
@@ -1338,13 +1393,14 @@ dl.section dd {
 
 #projectalign {
     vertical-align: middle;
+    text-align: center;
 }
 
 #projectname {
     font: 300% Courier, Tahoma, Arial, sans-serif;
     /*font-weight: bold;*/
     margin: 0px;
-    padding: 2px 0px;
+    padding-left: 20px;
     color: white;
 }
 
index 5094c4535b7772abeecf925cc4aa851c2d63d4e7..a3b1e556765be0feac9e35844e6180731700053c 100644 (file)
     <div id="top">
 
         <div id="titlearea">
-            <table cellspacing="0" cellpadding="0">
-                <tbody>
-                    <tr style="height: 56px;">
-                        <td id="projectlogo"><img alt="Logo" src="$relpath^$projectlogo" /></td>
-                        <td id="projectalign" style="padding-left: 0.5em;">
-                            <div id="projectname">$projectname &#160;
-                                <span id="projectnumber">$projectnumber</span>
-                            </div>
-                            <div id="projectbrief">$projectbrief</div>
-                        </td>
-                        <td style="padding-left: 0.5em;">
-                            <div id="projectbrief">$projectbrief</div>
-                        </td>
-                        <td>$searchbox</td>
-                    </tr>
-                </tbody>
+            <table id="titletable" cellspacing="0" cellpadding="0">
+                <tr id="titlerow">
+                    <td id="projectlogo"><img alt="Logo" src="$relpath^$projectlogo" /></td>
+                    <td id="projectalign" style="padding-left: 0.5em;">
+                        <div id="projectname">$projectname &#160;</div>
+                        <div id="projectbrief">$projectbrief</div>
+                    </td>
+                </tr>
             </table>
         </div>
\ No newline at end of file