styles.dev.css 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /* import(https://raw.githubusercontent.com/vladimirok5959/assets/main/css/reboot.css) */
  2. /* import(https://raw.githubusercontent.com/vladimirok5959/assets/main/css/grid.css) */
  3. /* import(https://raw.githubusercontent.com/vladimirok5959/assets/main/css/controls/button/button.css) */
  4. /* import(https://raw.githubusercontent.com/vladimirok5959/assets/main/css/controls/input/text.css) */
  5. a {
  6. text-decoration: none;
  7. }
  8. a:hover {
  9. text-decoration: underline;
  10. }
  11. html,
  12. body {
  13. height: 100%;
  14. }
  15. body {
  16. background-color: #eee;
  17. }
  18. .v-center {
  19. -ms-flex-wrap: wrap;
  20. display: -ms-flexbox;
  21. display: flex;
  22. flex-shrink: 0;
  23. flex-wrap: wrap;
  24. height: 100%;
  25. width: 100%;
  26. }
  27. .v-center-row {
  28. -ms-flex-item-align: center !important;
  29. align-self: center !important;
  30. flex: 0 0 100%;
  31. padding: 15px 0px;
  32. }
  33. .card {
  34. background-color: #fff;
  35. border-radius: 5px;
  36. border: 1px solid #dee2e6;
  37. padding: 25px;
  38. }
  39. .header {
  40. padding-bottom: 15px;
  41. }
  42. .header h1,
  43. .header h2 {
  44. margin-bottom: 0;
  45. text-align: center;
  46. }
  47. main h2 {
  48. font-size: 14px;
  49. margin-bottom: 25px;
  50. word-break: break-word;
  51. }
  52. main hr {
  53. margin: 0;
  54. }
  55. main form .form-control,
  56. main form button {
  57. margin-top: 25px;
  58. width: 100%;
  59. }
  60. .footer {
  61. font-size: 0.9rem;
  62. padding-top: 15px;
  63. text-align: center;
  64. }
  65. @media (min-width: 576px) {
  66. header,
  67. main,
  68. footer {
  69. margin: 0px auto;
  70. width: 400px;
  71. }
  72. }