main.css 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439
  1. body{
  2. background: #ffffff;
  3. color: #424247;
  4. font-family: sans-serif;
  5. font-size: 14pt;
  6. margin: 0;
  7. min-height: 100vh;
  8. display: flex;
  9. flex-wrap: wrap;
  10. flex-direction: row;
  11. align-content: center;
  12. align-items: flex-start;
  13. justify-content: space-around;
  14. }
  15. main{
  16. width: 100%;
  17. }
  18. .container{
  19. height: auto;
  20. min-height: 450px;
  21. width: 350px;
  22. transition: .2s;
  23. overflow: hidden;
  24. padding: 20px 40px;
  25. background: #fff;
  26. border: 1px solid #dadce0;
  27. border-radius: 8px;
  28. display: block;
  29. flex-shrink: 0;
  30. margin: 0 auto;
  31. }
  32. .container h1{
  33. margin: 0;
  34. width: 100%;
  35. text-align: center;
  36. color: #484848;
  37. }
  38. #loginscene .infcloudlink{
  39. margin: 0;
  40. width: 100%;
  41. text-align: center;
  42. color: #484848;
  43. }
  44. #loginscene .infcloudlink-hidden{
  45. visibility: hidden;
  46. }
  47. #loginscene input{
  48. }
  49. #loginscene .logocontainer{
  50. width: 100%;
  51. text-align: center;
  52. }
  53. #loginscene .logocontainer img{
  54. width: 75px;
  55. }
  56. #loginscene h1{
  57. text-align: center;
  58. font-family: sans-serif;
  59. font-weight: normal;
  60. }
  61. #loginscene button{
  62. float: right;
  63. }
  64. #loadingscene{
  65. width: 100%;
  66. height: 100%;
  67. background: rgb(237 237 237);
  68. position: absolute;
  69. top: 0;
  70. left: 0;
  71. display: flex;
  72. flex-wrap: nowrap;
  73. justify-content: center;
  74. align-items: center;
  75. flex-direction: column;
  76. overflow: hidden;
  77. z-index: 999;
  78. }
  79. #loadingscene h2{
  80. font-size: 2em;
  81. font-weight: bold;
  82. }
  83. #logoutview{
  84. width: 100%;
  85. display: block;
  86. background: white;
  87. text-align: center;
  88. padding: 10px 0px;
  89. color: #666;
  90. border-bottom: 2px solid #dadce0;
  91. position: fixed;
  92. }
  93. #logoutview span{
  94. width: calc(100% - 60px);
  95. display: inline-block;
  96. }
  97. #logoutview a{
  98. color: white;
  99. text-decoration: none;
  100. padding: 3px 10px;
  101. position: relative;
  102. border-radius: 4px;
  103. }
  104. #logoutview a[data-name=logout]{
  105. right: 25px;
  106. float: right;
  107. }
  108. #logoutview a[data-name=refresh]{
  109. left: 25px;
  110. float: left;
  111. }
  112. #collectionsscene{
  113. display: flex;
  114. flex-direction: row;
  115. flex-wrap: wrap;
  116. align-content: flex-start;
  117. align-items: center;
  118. margin-top: 50px;
  119. width: 100%;
  120. height: 100vh;
  121. }
  122. #collectionsscene article{
  123. width: 275px;
  124. background: rgb(250, 250, 250);
  125. border-radius: 8px;
  126. box-shadow: 2px 2px 3px #0000001a;
  127. border: 1px solid #dadce0;
  128. padding: 5px 10px;
  129. padding-top: 0;
  130. margin: 10px;
  131. float: left;
  132. min-height: 375px;
  133. overflow: hidden;
  134. }
  135. #collectionsscene article .colorbar{
  136. width: 500%;
  137. height: 15px;
  138. margin: 0px -100%;
  139. background: #000000;
  140. }
  141. #collectionsscene article .title{
  142. width: 100%;
  143. text-align: center;
  144. font-size: 1.5em;
  145. display: block;
  146. padding: 10px 0;
  147. margin: 0;
  148. }
  149. #collectionsscene article small{
  150. font-size: 15px;
  151. float: left;
  152. font-weight: normal;
  153. font-style: italic;
  154. padding-bottom: 10px;
  155. width: 100%;
  156. text-align: center;
  157. }
  158. #collectionsscene article input[type=text]{
  159. margin-bottom: 0 !important;
  160. }
  161. #collectionsscene article p{
  162. font-size: 1em;
  163. max-height: 130px;
  164. overflow: overlay;
  165. }
  166. #collectionsscene article:hover ul{
  167. visibility: visible;
  168. }
  169. #collectionsscene ul{
  170. visibility: hidden;
  171. display: flex;
  172. justify-content: space-evenly;
  173. width: 60%;
  174. margin: 0 20%;
  175. padding: 0;
  176. }
  177. #collectionsscene li{
  178. list-style: none;
  179. display: block;
  180. }
  181. #collectionsscene li a{
  182. text-decoration: none !important;
  183. padding: 5px;
  184. float: left;
  185. border-radius: 5px;
  186. width: 25px;
  187. height: 25px;
  188. text-align: center;
  189. }
  190. #collectionsscene article small[data-name=contentcount]{
  191. font-weight: bold;
  192. font-style: normal;
  193. }
  194. #editcollectionscene p span{
  195. word-wrap:break-word;
  196. font-weight: bold;
  197. color: #4e9a06;
  198. }
  199. #deletecollectionscene p span{
  200. word-wrap:break-word;
  201. font-weight: bold;
  202. color: #a40000;
  203. }
  204. #uploadcollectionscene ul{
  205. margin: 10px -30px;
  206. max-height: 600px;
  207. overflow-y: scroll;
  208. }
  209. #uploadcollectionscene li{
  210. border-bottom: 1px dashed #d5d5d5;
  211. margin-bottom: 10px;
  212. padding-bottom: 10px;
  213. }
  214. #uploadcollectionscene div[data-name=pending]{
  215. width: 100%;
  216. text-align: center;
  217. }
  218. #uploadcollectionscene .successmessage{
  219. color: #4e9a06;
  220. width: 100%;
  221. text-align: center;
  222. display: block;
  223. margin-top: 15px;
  224. }
  225. .deleteconfirmationtxt{
  226. text-align: center;
  227. font-size: 1em;
  228. font-weight: bold;
  229. }
  230. .fabcontainer{
  231. display: flex;
  232. flex-direction: column-reverse;
  233. position: fixed;
  234. bottom: 5px;
  235. right: 0;
  236. }
  237. .fabcontainer a{
  238. width: 30px;
  239. height: 30px;
  240. text-decoration: none;
  241. color: white;
  242. border: none !important;
  243. border-radius: 100%;
  244. margin: 5px 10px;
  245. background: black;
  246. text-align: center;
  247. display: flex;
  248. align-content: center;
  249. justify-content: center;
  250. align-items: center;
  251. font-size: 30px;
  252. padding: 10px;
  253. box-shadow: 2px 2px 7px #000000d6;
  254. }
  255. .title{
  256. word-wrap: break-word;
  257. font-weight: bold;
  258. }
  259. .icon{
  260. width: 100%;
  261. height: 100%;
  262. filter: invert(1);
  263. }
  264. .smalltext{
  265. font-size: 75% !important;
  266. }
  267. .error{
  268. width: 100%;
  269. display: block;
  270. text-align: center;
  271. color: rgb(217,48,37);
  272. font-family: sans-serif;
  273. clear: both;
  274. padding-top: 15px;
  275. }
  276. img.loading{
  277. width: 150px;
  278. height: 150px;
  279. }
  280. .error::before{
  281. content: "!";
  282. height: 1em;
  283. color: white;
  284. background: rgb(217,48,37);
  285. font-weight: bold;
  286. border-radius: 100%;
  287. display: inline-block;
  288. width: 1.1em;
  289. margin-right: 5px;
  290. font-size: 1em;
  291. text-align: center;
  292. }
  293. button{
  294. font-size: 1em;
  295. padding: 7px 21px;
  296. color: white;
  297. border-radius: 4px;
  298. float: right;
  299. margin-left: 10px;
  300. background: black;
  301. cursor: pointer;
  302. }
  303. input, select{
  304. width: 100%;
  305. height: 3em;
  306. border-style: solid;
  307. border-color: #e6e6e6;
  308. border-width: 1px;
  309. border-radius: 7px;
  310. margin-bottom: 25px;
  311. padding-left: 15px;
  312. padding-right: 15px;
  313. outline: none !important;
  314. }
  315. input[type=text], input[type=password]{
  316. width: calc(100% - 30px);
  317. }
  318. input:active, input:focus, input:focus-visible{
  319. border-color: #2494fe !important;
  320. border-width: 1px !important;
  321. }
  322. p.red, span.red{
  323. color: #b50202;
  324. }
  325. button.red, a.red{
  326. background: #b50202;
  327. border: 1px solid #a40000;
  328. }
  329. button.red:hover, a.red:hover{
  330. background: #a40000;
  331. }
  332. button.red:active, a.red:active{
  333. background: #8f0000;
  334. }
  335. button.green, a.green{
  336. background: #4e9a06;
  337. border: 1px solid #377200;
  338. }
  339. button.green:hover, a.green:hover{
  340. background: #377200;
  341. }
  342. button.green:active, a.green:active{
  343. background: #285200;
  344. }
  345. button.blue, a.blue{
  346. background: #2494fe;
  347. border: 1px solid #055fb5;
  348. }
  349. button.blue:hover, a.blue:hover{
  350. background: #1578d6;
  351. cursor: pointer !important;
  352. }
  353. button.blue:active, a.blue:active{
  354. background: #055fb5;
  355. cursor: pointer !important;
  356. }
  357. @media only screen and (max-width: 600px) {
  358. #collectionsscene{
  359. flex-direction: column !important;
  360. flex-wrap: nowrap;
  361. }
  362. #collectionsscene article{
  363. height: auto;
  364. min-height: 375px;
  365. }
  366. .container{
  367. max-width: 280px !important;
  368. }
  369. #collectionsscene ul{
  370. visibility: visible !important;
  371. }
  372. #logoutview span{
  373. padding: 0 5px;
  374. }
  375. }