main.css 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397
  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. #editcollectionscene p span{
  174. word-wrap:break-word;
  175. font-weight: bold;
  176. color: #4e9a06;
  177. }
  178. #deletecollectionscene p span{
  179. word-wrap:break-word;
  180. font-weight: bold;
  181. color: #a40000;
  182. }
  183. #uploadcollectionscene ul{
  184. margin: 10px -30px;
  185. max-height: 600px;
  186. overflow: overlay;
  187. }
  188. #uploadcollectionscene li{
  189. border-bottom: 1px dashed #d5d5d5;
  190. margin-bottom: 10px;
  191. padding-bottom: 10px;
  192. }
  193. #uploadcollectionscene .successmessage{
  194. color: #4e9a06;
  195. width: 100%;
  196. text-align: center;
  197. display: block;
  198. margin-top: 15px;
  199. }
  200. .fabcontainer{
  201. display: flex;
  202. flex-direction: column-reverse;
  203. position: fixed;
  204. bottom: 5px;
  205. right: 0;
  206. }
  207. .fabcontainer a{
  208. width: 30px;
  209. height: 30px;
  210. text-decoration: none;
  211. color: white;
  212. border: none !important;
  213. border-radius: 100%;
  214. margin: 5px 10px;
  215. background: black;
  216. text-align: center;
  217. display: flex;
  218. align-content: center;
  219. justify-content: center;
  220. align-items: center;
  221. font-size: 30px;
  222. padding: 10px;
  223. box-shadow: 2px 2px 7px #000000d6;
  224. }
  225. .title{
  226. word-wrap: break-word;
  227. font-weight: bold;
  228. }
  229. .icon{
  230. width: 100%;
  231. height: 100%;
  232. filter: invert(1);
  233. }
  234. .smalltext{
  235. font-size: 75% !important;
  236. }
  237. .error{
  238. width: 100%;
  239. display: block;
  240. text-align: center;
  241. color: rgb(217,48,37);
  242. font-family: sans-serif;
  243. clear: both;
  244. padding-top: 15px;
  245. }
  246. .error::before{
  247. content: "!";
  248. height: 1em;
  249. color: white;
  250. background: rgb(217,48,37);
  251. font-weight: bold;
  252. border-radius: 100%;
  253. display: inline-block;
  254. width: 1.1em;
  255. margin-right: 5px;
  256. font-size: 1em;
  257. text-align: center;
  258. }
  259. button{
  260. font-size: 1em;
  261. padding: 7px 21px;
  262. color: white;
  263. border-radius: 4px;
  264. float: right;
  265. margin-left: 10px;
  266. background: black;
  267. cursor: pointer;
  268. }
  269. input, select{
  270. width: 100%;
  271. height: 3em;
  272. border-style: solid;
  273. border-color: #e6e6e6;
  274. border-width: 1px;
  275. border-radius: 7px;
  276. margin-bottom: 25px;
  277. padding-left: 15px;
  278. padding-right: 15px;
  279. outline: none !important;
  280. }
  281. input[type=text], input[type=password]{
  282. width: calc(100% - 30px);
  283. }
  284. input:active, input:focus, input:focus-visible{
  285. border-color: #2494fe !important;
  286. border-width: 1px !important;
  287. }
  288. p.red, span.red{
  289. color: #b50202;
  290. }
  291. button.red, a.red{
  292. background: #b50202;
  293. border: 1px solid #a40000;
  294. }
  295. button.red:hover, a.red:hover{
  296. background: #a40000;
  297. }
  298. button.red:active, a.red:active{
  299. background: #8f0000;
  300. }
  301. button.green, a.green{
  302. background: #4e9a06;
  303. border: 1px solid #377200;
  304. }
  305. button.green:hover, a.green:hover{
  306. background: #377200;
  307. }
  308. button.green:active, a.green:active{
  309. background: #285200;
  310. }
  311. button.blue, a.blue{
  312. background: #2494fe;
  313. border: 1px solid #055fb5;
  314. }
  315. button.blue:hover, a.blue:hover{
  316. background: #1578d6;
  317. cursor: pointer !important;
  318. }
  319. button.blue:active, a.blue:active{
  320. background: #055fb5;
  321. cursor: pointer !important;
  322. }
  323. @media only screen and (max-width: 600px) {
  324. #collectionsscene{
  325. flex-direction: column !important;
  326. flex-wrap: nowrap;
  327. }
  328. #collectionsscene article{
  329. height: auto;
  330. min-height: 350px;
  331. }
  332. .container{
  333. max-width: 280px !important;
  334. }
  335. #collectionsscene ul{
  336. display: flex !important;
  337. }
  338. #logoutview span{
  339. text-align: left;
  340. }
  341. }