index.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /* Copyright (C) 2019 Intel Corporation. All rights reserved.
  2. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  3. */
  4. {% load static %}
  5. <style>
  6. #container{
  7. position:relative;
  8. margin:0px;
  9. height:110px;
  10. }
  11. #content {
  12. margin:0px 20% 0px 18%;
  13. border:solid 1.5px;
  14. border-color: white black white black;
  15. height:50%;
  16. }
  17. #mainnav{
  18. display:table;
  19. margin: 0 auto;
  20. }
  21. #mainnav li{
  22. display: table-cell;
  23. padding-left:10px;
  24. }
  25. #mainnav ul li a{
  26. width:120px;
  27. height:30px;
  28. background:black;
  29. color:white;
  30. margin:0px 50px;
  31. font-size:21px;
  32. font-family:'sansationlight';
  33. display:block;
  34. text-align:center;
  35. text-decoration:none;
  36. }
  37. #mainnav ul li a:hover{
  38. width:120px;
  39. height:33px;
  40. line-height:30px;
  41. border:solid 1.5px;
  42. border-color: black black white black;
  43. color:#3FC3DF;
  44. background:black;
  45. }
  46. .headers{
  47. background-image: url("{%static 'photo/milky-way-2695569_1280.jpg'%}");
  48. background-repeat: no-repeat;
  49. background-size: 100% 100%;
  50. color:white;
  51. clear:both;
  52. height:50%;
  53. text-align:center;
  54. padding:10px;
  55. margin:0px;
  56. }
  57. #maintitle{
  58. font-size:25px;
  59. font-family:'sansationlight';
  60. }
  61. #photo2{
  62. position: relative;
  63. float: left;
  64. top:10%;
  65. left:20%;
  66. }
  67. #devic{
  68. position: relative;
  69. font-size:22px;
  70. float: left;
  71. left:25%;
  72. top:30%;
  73. width:40%;
  74. }
  75. #dividebar{
  76. position: absolute;
  77. top:210px;
  78. margin:10px;
  79. width:100%;
  80. height:1px
  81. }
  82. #devices {
  83. position:relative;
  84. bottom: 2px;
  85. background-color: #F2F2F2;
  86. height:125px;
  87. width:80%;
  88. margin:8px 10%;
  89. }
  90. #section {
  91. position:relative;
  92. background-color:white;
  93. top:14px;
  94. left:13%;
  95. width: 70%;
  96. float:left;
  97. height:96px;
  98. border-style:double solid;
  99. border-color:black;
  100. border-width:0.5px;
  101. padding:10px;
  102. }
  103. #photo{
  104. position: relative;
  105. float: left;
  106. top:0px;
  107. left:6%;
  108. }
  109. #ID{
  110. position:relative;
  111. float:left;
  112. left:12%;
  113. height:20px;
  114. width:8%;
  115. top:75%;
  116. z-index:9999;
  117. /* display:none; */
  118. font-size:15px;
  119. color:rgba(7, 38, 85, 0.87);
  120. }
  121. #IPs{
  122. position: relative;
  123. left: 14%;
  124. top:10%;
  125. width:30%;
  126. font-size:17px;
  127. font-family:'sansationlight';
  128. }
  129. #ports{
  130. position: relative;
  131. left: 14%;
  132. top:25%;
  133. bottom: 5px;
  134. width:30%;
  135. font-size:17px;
  136. font-family:'sansationlight';
  137. }
  138. #installs{
  139. position: relative;
  140. float: right;
  141. right: 20%;
  142. bottom:57%;
  143. font-size:17px;
  144. font-family:'sansationlight';
  145. }
  146. .smenu{
  147. position: relative;
  148. float: right;
  149. top:45px;
  150. right: 5%;
  151. width: 6%;
  152. }
  153. .prev{
  154. position:absolute;
  155. left:72%;
  156. clear:both;
  157. text-align:center;
  158. padding:1px;
  159. width:100px;
  160. height:30px;
  161. color:grey;
  162. background-color:white;
  163. border-radius:5px;
  164. z-index: 996;
  165. }
  166. .next{
  167. position:absolute;
  168. left:80%;
  169. clear:both;
  170. text-align:center;
  171. padding:1px;
  172. width:100px;
  173. height:30px;
  174. color:grey;
  175. background-color:white;
  176. border-radius:5px;
  177. z-index: 996;
  178. }
  179. .footer {
  180. position:absolute;
  181. bottom:0px;
  182. left:0px;
  183. background-color:black;
  184. color:white;
  185. clear:both;
  186. text-align:center;
  187. padding:1px;
  188. width:100%;
  189. height:4%;
  190. z-index: 999;
  191. }
  192. </style>