Advertisement
100hahahaha

Untitled

Jun 3rd, 2023
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.95 KB | None | 0 0
  1. #main.css ------------------------------------------
  2. body {
  3. margin: 0px
  4. }
  5.  
  6. aside img {
  7. width: 300px;
  8. float: left;
  9. }
  10.  
  11. aside {
  12. float: left;
  13. background: #070f29;
  14. color: white;
  15. padding: 2.5%;
  16. width: 25%;
  17. height: 100vh;
  18. }
  19.  
  20. aside .logo {
  21. font-size: 40px;
  22. fon-weight: bold;
  23. }
  24.  
  25. aside h3 {
  26. margin-top: 50px;
  27. front-size: 20px;
  28. }
  29.  
  30. aside ul {list-style: none}
  31. aside ul li {
  32. color: white;
  33. display: block;
  34. margin-top: 5px;
  35. transition: transform .1s ease;
  36. }
  37.  
  38. aside ul li:hover, aside ul a:hover {
  39. color: moccasin;
  40. text-decoration: none;
  41. transform: scale(1.05);
  42. }
  43.  
  44. aside ul li, aside ul a {
  45. text-decoration: none;
  46. }
  47.  
  48.  
  49. #form.css -----------------------------------------------
  50. html, body {
  51. width: 100%;
  52. height: 100%;
  53. }
  54.  
  55.  
  56. .name {
  57. display: flex;
  58. align-items: left;
  59. color: white;
  60. width: 100%;
  61. color: white;
  62. font-size: 15px;
  63. margin-top: 15px;
  64. margin-bottom: 3px;
  65. }
  66.  
  67. .table_change_form {
  68. color: white;
  69. display: flex;
  70. flex-direction: column;
  71. align-item: center;
  72. background-color: #4a93ff47;
  73. padding: 25px;
  74. border-radius: 15px;
  75. box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
  76. }
  77.  
  78. .confirm_button {
  79. margin-top: 15px;
  80. background-color: #b9363687;
  81. }
  82.  
  83.  
  84. #data-table.css-------------------------------------------
  85. html, body {
  86. width: 100%;
  87. height: 100%;
  88. background: #ab414111;
  89. }
  90.  
  91. .data_table {
  92. background-color: #141a38;
  93. border-radius: 10px;
  94. color: white;
  95. width: 100%;
  96. border-collapse: separate;
  97. border-spacing: 10px;
  98. width: 95%;
  99. overflow-y: auto
  100. }
  101.  
  102. .data_table th, td {
  103. border-radius: 10px;
  104. padding: 10px;
  105. text-align: center;
  106. box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
  107. transition: 0.2s all ease
  108. }
  109.  
  110. .data_table th {
  111. background-color: #8c46c559;
  112. }
  113.  
  114. .data_table td {
  115. color: white;
  116. background-color: #0c296457;
  117.  
  118. }
  119.  
  120.  
  121.  
  122. .center_table {
  123. display:flex;
  124. justify-content: center;
  125. align-items: center;
  126. flex-direction: column;
  127. height: 100%;
  128. }
  129.  
  130. .horizontal_center {
  131. color: black;
  132. display: flex;
  133. justify-content: center;
  134. }
  135.  
  136. .horizontal_center div {
  137. font-size: 30px;
  138. fon-weight: bold;
  139. color: black;
  140.  
  141. }
  142.  
  143. .plate {
  144. }
  145.  
  146. .button {
  147. color: white;
  148. padding: 10px;
  149. border-radius: 10px;
  150. border: 0px solid white;
  151. text-align: center;
  152. text-decoration: none;
  153. transition: 0.2s ease all
  154. }
  155.  
  156. .button:hover{
  157. color: white;
  158. }
  159.  
  160. .edit_button {
  161. background-color: #daa200;
  162. }
  163.  
  164. .delete_button {
  165. background-color: #f51e34;
  166. }
  167.  
  168. .edit_button:hover {
  169. background-color: #f2b600;
  170. }
  171.  
  172. .edit_button:active {
  173. background-color: #d19c02;
  174. }
  175.  
  176. .delete_button:hover {
  177. background-color: #ff2e43;
  178. }
  179.  
  180. .delete_button:active {
  181. background-color: #d9192d;
  182. }
  183.  
  184. .add_button {
  185. margin-top: 15px;
  186. background-color: #00c414;
  187. }
  188.  
  189. .big_button {
  190. width: 300px;
  191. }
  192.  
  193. .add_button:hover {
  194. background-color: #02d918;
  195. }
  196.  
  197. .add_button:active{
  198. background-color: #02a813;
  199. }
  200.  
  201.  
  202. #index.css -----------------------------------------------
  203. html, body {
  204. width: 100%;
  205. height: 100%;
  206. }
  207.  
  208. .header {
  209. color: black;
  210. font-size: 30px;
  211. font-weight: 100px;
  212. }
  213.  
  214. .center_container {
  215. color: black;
  216. background-color: #8ab434373;
  217. border-radius: 10px;
  218. padding: 15px;
  219. margin: 15px;
  220. }
  221.  
  222.  
  223. #navigation.css --------------------------------------------
  224. body {
  225. margin: 0px
  226. }
  227.  
  228. aside img {
  229. width: 300px;
  230. float: left;
  231. }
  232.  
  233. aside {
  234. float: left;
  235. background: #4a13ff47;
  236. color: white;
  237. padding: 2.5%;
  238. width: 25%;
  239. height: 100vh;
  240. border-right: 5px solid #1a2654;
  241. }
  242.  
  243. aside .logo {
  244. font-size: 40px;
  245. fon-weight: bold;
  246. }
  247.  
  248. aside h3 {
  249. margin-top: 50px;
  250. front-size: 20px;
  251. }
  252.  
  253. aside ul {list-style: none}
  254. aside ul li {
  255. color: white;
  256. display: block;
  257. margin-top: 10px;
  258. transition: transform .1s ease;
  259. }
  260.  
  261. aside ul li:hover, aside ul a:hover {
  262. color: #ebd9d9;
  263. text-decoration: none;
  264. transform: scale(1.05);
  265. }
  266.  
  267. aside ul li, aside ul a {
  268. text-decoration: none;
  269. }
  270.  
  271. .rightOffset {
  272. margin: 15px;
  273. }
  274.  
  275. .registration_panel {
  276. position: absolute;
  277. top: 20px;
  278. right: 0px;
  279. display: flex;
  280. justify-content: right;
  281. align-items: center;
  282. height: 60px;
  283. }
  284.  
  285. .log_in_and_register {
  286. margin-right: 20px;
  287. }
  288.  
  289. .reg_buttons {
  290. color: black;
  291. text-decoration: none;
  292. padding: 5px 15px 5px 15px;
  293. border-radius: 10px;
  294. margin-right: 10px;
  295. cursor: pointer;
  296. box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
  297. }
  298.  
  299. .log_in {
  300. background-color: #4a93ff47;
  301. }
  302.  
  303. .log_in:hover {
  304. color: black;
  305. background-color:#b9363687;
  306. }
  307.  
  308.  
  309.  
  310. .register {
  311. background-color: #4a93ff47;
  312. }
  313.  
  314. .register:hover {
  315. color: black;
  316. background-color: #b9363687;
  317. }
  318.  
  319.  
  320.  
  321. .login_label {
  322. color: white;
  323. font-size: 18px;
  324. }
  325.  
  326. .login {
  327. color: black;
  328. font-size: 15px;
  329. background-color: #4a93ff47;
  330. border-radius: 10px;
  331. padding: 5px;
  332. margin-right: 5px;
  333. margin-left: 5px;
  334. }
  335.  
  336. .role_label {
  337. color: white;
  338. font-size: 18px;
  339. }
  340.  
  341. .role {
  342. color: #5eb6ff;
  343. font-size: 15px;
  344. background-color: #27355a;
  345. border-radius: 10px;
  346. padding: 5px;
  347. margin: 5px;
  348. }
  349.  
  350. .label {
  351. display: flex;
  352. flex-direction: column;
  353. justify-content: center;
  354. align-items: center;
  355. }
  356.  
  357. .buttons_container {
  358. display: flex;
  359. justify-content: end;
  360. align-items: end;
  361. }
  362.  
  363. .data_container {
  364. display: flex;
  365. justify-content: center;
  366. align-items: center;
  367. }
  368.  
  369. .sep_line_container {
  370. display: flex;
  371. justify-content: center;
  372. align-items: center;
  373. height: 35px;
  374. margin: 0px 15px 0px 15px;
  375. }
  376.  
  377. .sep_line {
  378. height: 50%;
  379. border-left: 1px solid #4b4b4b;
  380. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement