licensing.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. body {
  2. font: 13px/20px "Lucida Grande", Tahoma, Verdana, sans-serif;
  3. color: #404040;
  4. background: #113946;
  5. }
  6. .h1 {
  7. font-family:Comic Sans Ms;
  8. text-align:center;
  9. font-size:20pt;
  10. color:whitesmoke;
  11. }
  12. .container-main{
  13. display:flex;
  14. align-items:center;
  15. flex-direction:column;
  16. margin: auto;
  17. }
  18. .container-item{
  19. display:flex;
  20. align-items:center;
  21. flex-direction:column;
  22. margin: auto;
  23. }
  24. .container-form{
  25. display:flex;
  26. align-content: space-between;
  27. }
  28. .login {
  29. background: white;
  30. border-radius: 3px;
  31. -webkit-box-shadow: 0 0 200px rgba(255, 255, 255, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
  32. box-shadow: 0 0 200px rgba(255, 255, 255, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
  33. }
  34. .serial-number {
  35. color: white;
  36. font-size: 16px;
  37. }
  38. .login p {
  39. margin: 20px 0 0;
  40. }
  41. .login p:first-child {
  42. margin-top: 0;
  43. }
  44. .login input[type=text] {
  45. width: 278px;
  46. }
  47. .login .submit {
  48. text-align: center;
  49. width: 30%;
  50. color: white;
  51. background-color:gray;
  52. margin: 0.2em;
  53. border-radius: 0.8em;
  54. }
  55. ::-webkit-input-placeholder {
  56. color: #ccc;
  57. font-size: 18px;
  58. }
  59. input {
  60. font-family: 'Lucida Grande', Tahoma, Verdana, sans-serif;
  61. font-size: 18px;
  62. }
  63. input[type=text] {
  64. margin: 5px;
  65. padding: 0 10px;
  66. width: 200px;
  67. height: 34px;
  68. color: #404040;
  69. background: white;
  70. border: 1px solid;
  71. border-color: #c4c4c4 #d1d1d1 #d4d4d4;
  72. border-radius: 2px;
  73. outline: 5px solid #eff4f7;
  74. -moz-outline-radius: 3px;
  75. -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12);
  76. box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12);
  77. }
  78. input[type=text]:focus:focus {
  79. border-color: #7dc9e2;
  80. outline-color: #dceefc;
  81. outline-offset: 0;
  82. }