Advertisement
Guest User

Untitled

a guest
Apr 5th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.39 KB | None | 0 0
  1.  
  2.  
  3. /* ==========================================================================
  4. Author's custom styles
  5. ========================================================================== */
  6.  
  7. .navbar-brand {
  8. padding: 0 15px;
  9. }
  10.  
  11. .tx-felogin-pi1 {
  12. text-align: right;
  13. }
  14.  
  15. .tx-felogin-pi1 h3,
  16. .tx-felogin-pi1 h3 + div,
  17. .tx-felogin-pi1 label,
  18. .tx-felogin-pi1 legend {
  19. display:none;
  20. }
  21.  
  22. .tx-felogin-pi1 [type=submit] {
  23. position: relative;
  24. top: -1px;
  25. display: inline-block;
  26. padding: 6px 12px;
  27. margin: 8px;
  28. font-size: 14px;
  29. font-weight: normal;
  30. line-height: 1.42857143;
  31. text-align: center;
  32. white-space: nowrap;
  33. vertical-align: middle;
  34. -ms-touch-action: manipulation;
  35. touch-action: manipulation;
  36. cursor: pointer;
  37. -webkit-user-select: none;
  38. -moz-user-select: none;
  39. -ms-user-select: none;
  40. user-select: none;
  41. background-image: none;
  42. border: 1px solid transparent;
  43. border-radius: 4px;
  44. color: #fff;
  45. background-color: #5cb85c;
  46. border-color: #4cae4c;
  47. }
  48.  
  49.  
  50. #user, #pass {
  51. display: block;
  52. width: 198px;
  53. height: 34px;
  54. margin: 8px;
  55. padding: 0 2px;
  56. font-size: 14px;
  57. line-height: 1.42857143;
  58. color: #555;
  59. background-color: #fff;
  60. background-image: none;
  61. border: 1px solid #ccc;
  62. border-radius: 4px;
  63. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  64. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  65. -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  66. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  67. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  68. }
  69. #user:focus, #pass:focus {
  70. border-color: #66afe9;
  71. outline: 0;
  72. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
  73. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
  74. }
  75. #user::-moz-placeholder, #pass::-moz-placeholder {
  76. color: #999;
  77. opacity: 1;
  78. }
  79. #user:-ms-input-placeholder, #pass:-ms-input-placeholder {
  80. color: #999;
  81. }
  82. #user::-webkit-input-placeholder, #pass::-webkit-input-placeholder {
  83. color: #999;
  84. }
  85.  
  86. .tx-felogin-pi1 div {
  87. display: inline-block;
  88. color: white;
  89. width: 200px;
  90. }
  91. .tx-felogin-pi1 div:nth-child(3) {
  92. display: inline-block;
  93. width: 106px;
  94. }
  95. .tx-felogin-pi1 fieldset {
  96. height: 45px;
  97. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement