application.css 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400
  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. #section {
  62. position:relative;
  63. top:5px;
  64. width:100%;
  65. float:left;
  66. height:120px;
  67. border-style:double solid;
  68. border-color:black rgb(194, 194, 190) black rgb(248, 248, 248) ;
  69. border-width:0.5px;
  70. padding:10px;
  71. }
  72. #photo{
  73. position: relative;
  74. float: left;
  75. top:18%;
  76. left:10%;
  77. widows: 60px;
  78. }
  79. #IPs{
  80. position: relative;
  81. left: 20%;
  82. top:10%;
  83. width:35%;
  84. font-size:17px;
  85. font-family:'sansationlight';
  86. }
  87. #ports{
  88. position: relative;
  89. left: 20%;
  90. top:30%;
  91. bottom: 5%;
  92. width:35%;
  93. font-size:17px;
  94. font-family:'sansationlight';
  95. }
  96. #installs{
  97. position: relative;
  98. float: left;
  99. left:55%;
  100. bottom:40%;
  101. font-size:17px;
  102. font-family:'sansationlight';
  103. }
  104. #download{
  105. position:relative;
  106. text-align: center;
  107. left:15%;
  108. width:70%;
  109. top:40px;
  110. height:40px;
  111. /*border-color:#192C4F;*/
  112. }
  113. .explain{
  114. width:250px;
  115. height:40px;
  116. top:50%;
  117. float:left;
  118. font-size:18px;
  119. }
  120. #btn{
  121. float:right;
  122. }
  123. #APPS {
  124. position:relative;
  125. top:30px;
  126. left:16.67%;
  127. width:75%;
  128. }
  129. #applications{
  130. position:relative;
  131. float:left;
  132. background-color:white;
  133. width:88.9%;
  134. height:45px;
  135. padding:2px;
  136. margin:5px 0px;
  137. border-style:double solid;
  138. border-color:black;
  139. border-width:0.5px;
  140. }
  141. #applogo{
  142. position:relative;
  143. float:left;
  144. top:10%
  145. }
  146. #appinfo1{ position:relative; float:left; left:40px; width:34%;font-size:15px;height:25px;top:33%}
  147. #appinfo2{ position:relative; float:left; left:20px; width:24%;font-size:15px;height:25px;top:33%}
  148. #appinfo3{ position:relative; float:left; left:20px; width:34%;font-size:15px;height:25px;top:33%}
  149. #delete{
  150. position:relative;
  151. margin:8px 0px;
  152. float:right;
  153. right:7%;
  154. }
  155. .main{
  156. position: absolute;
  157. float:left;
  158. width:650px;
  159. height:350px;
  160. z-index: 9999;
  161. background-color: white;
  162. display:none;
  163. border:solid 1px rgb(4, 30, 66);
  164. border-width: 1.5px;
  165. border-radius: 10px;
  166. }
  167. .close{
  168. background-color: black;
  169. color:white;
  170. border-top-right-radius: 10px;
  171. border-top-left-radius: 10px;
  172. }
  173. .hotapps{
  174. background-color:rgb(202, 202, 202);
  175. font-size: 16px;
  176. font-family:'days';
  177. height:30px;
  178. text-align: justify;
  179. border:solid 2px;
  180. border-color: rgb(202, 202, 202) rgb(202, 202, 202) rgb(202, 202, 202) black;
  181. }
  182. #scrollba{
  183. overflow-x: None;
  184. overflow-y: scroll;
  185. height: 270px;
  186. width:650px;
  187. }
  188. #Dapplications{
  189. width:630px;
  190. margin:4px 10px 0px 10px;
  191. height:45px;
  192. border:solid 1px;
  193. border-color: rgb(221, 221, 221) white white white;
  194. /* background-color: rgb(233, 233, 233); */
  195. }
  196. .mybtn2{
  197. position: relative;
  198. float:left;
  199. left:45px;
  200. top:3px;
  201. height:33px;
  202. border-radius: 10px;
  203. background-color: rgb(22, 109, 121);
  204. color:white;
  205. }
  206. #types{
  207. background-color: rgb(3, 90, 90);
  208. color:white;
  209. text-align: left
  210. }
  211. #loading{
  212. position:relative;
  213. float:left;
  214. width: 100%;
  215. display:None;
  216. height:40px;
  217. top:10px;
  218. z-index:1010;
  219. }
  220. .loadapp{
  221. font-size:20px;
  222. text-align: center;
  223. color:rgb(24, 77, 24);
  224. }
  225. #preloader {
  226. position: fixed;
  227. top: 0;
  228. left: 0;
  229. width: 100%;
  230. height: 100%;
  231. }
  232. #loader {
  233. display: block;
  234. position: relative;
  235. left: 50%;
  236. top: 50%;
  237. width: 150px;
  238. height: 150px;
  239. margin: -75px 0 0 -75px;
  240. border-radius: 50%;
  241. border: 3px solid transparent;
  242. border-top-color: rgb(135, 155, 241);
  243. -webkit-animation: spin 2s linear infinite;
  244. animation: spin 2s linear infinite;
  245. }
  246. #loader:before {
  247. content: "";
  248. position: absolute;
  249. top: 5px;
  250. left: 5px;
  251. right: 5px;
  252. bottom: 5px;
  253. border-radius: 50%;
  254. border: 3px solid transparent;
  255. border-top-color: rgb(23, 62, 146);
  256. -webkit-animation: spin 3s linear infinite;
  257. animation: spin 3s linear infinite;
  258. }
  259. #loader:after {
  260. content: "";
  261. position: absolute;
  262. top: 15px;
  263. left: 15px;
  264. right: 15px;
  265. bottom: 15px;
  266. border-radius: 50%;
  267. border: 3px solid transparent;
  268. border-top-color: rgb(21, 44, 87);
  269. -webkit-animation: spin 1.5s linear infinite;
  270. animation: spin 1.5s linear infinite;
  271. }
  272. @-webkit-keyframes spin {
  273. 0% {
  274. -webkit-transform: rotate(0deg);
  275. -ms-transform: rotate(0deg);
  276. transform: rotate(0deg);
  277. }
  278. 100% {
  279. -webkit-transform: rotate(360deg);
  280. -ms-transform: rotate(360deg);
  281. transform: rotate(360deg);
  282. }
  283. }
  284. @keyframes spin {
  285. 0% {
  286. -webkit-transform: rotate(0deg);
  287. -ms-transform: rotate(0deg);
  288. transform: rotate(0deg);
  289. }
  290. 100% {
  291. -webkit-transform: rotate(360deg);
  292. -ms-transform: rotate(360deg);
  293. transform: rotate(360deg);
  294. }
  295. }
  296. .middlebox{
  297. position:absolute;
  298. z-index:1003;
  299. height:180px;
  300. width:340px;
  301. background-color: white;
  302. border-radius: 7px;
  303. border-style:double;
  304. border-color:rgb(2, 37, 11) solid;
  305. border-width: 0.8px;
  306. display: none;
  307. }
  308. .warning{
  309. position: absolute;
  310. left:10%;
  311. top:6%;
  312. FONT-size:18px;
  313. color:rgb(0, 85, 0);
  314. height:20%;
  315. width:80%;
  316. border-style:none none dashed none;
  317. border-width: 1px;
  318. border-color:rgb(0, 85, 0);
  319. }
  320. .surebtn{
  321. position:relative;
  322. float:left;
  323. left:44%;
  324. top:75%;
  325. }
  326. .findapp{
  327. position:absolute;
  328. left:10%;
  329. height:25%;
  330. top:40%;
  331. width:80%;
  332. font-size:15px;
  333. text-align: center;
  334. border-style:none none solid none;
  335. border-color:rgb(182, 182, 182);
  336. border-width:0.5px;
  337. }
  338. .deletebox{
  339. position:absolute;
  340. z-index:1003;
  341. height:180px;
  342. width:340px;
  343. background-color: white;
  344. border-radius: 7px;
  345. border-style:double;
  346. border-color:rgb(43, 9, 1) solid;
  347. border-width: 0.8px;
  348. display: none;
  349. }
  350. .warning2{
  351. position: absolute;
  352. left:10%;
  353. top:6%;
  354. FONT-size:18px;
  355. color:rgb(185, 0, 0);
  356. height:20%;
  357. width:80%;
  358. border-style:none none dashed none;
  359. border-width: 1px;
  360. border-color:rgb(185, 0, 0);
  361. }
  362. .suresbtn{
  363. position:relative;
  364. float:left;
  365. left:24%;
  366. top:75%;
  367. color:green
  368. }
  369. .cancelsbtn{
  370. position:relative;
  371. float:right;
  372. right:20%;
  373. top:75%;
  374. color:red
  375. }
  376. .footer {
  377. position:absolute;
  378. bottom:0px;
  379. left:0px;
  380. background-color:black;
  381. color:white;
  382. clear:both;
  383. text-align:center;
  384. padding:1px;
  385. width:100%;
  386. height:4%;
  387. z-index: 999;
  388. }