main.css 7.2 KB

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