main.css 6.9 KB

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