main.css 6.7 KB

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