Advertisement
Guest User

Untitled

a guest
Feb 13th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. .head-container {
  2. width: 1460px;
  3. margin: 0 auto;
  4. position: relative;
  5. background: black;
  6. }
  7.  
  8. .head-container>.logo {
  9. width: 200px;
  10. height: 20px;
  11. float: left;
  12. }
  13.  
  14. .menu {
  15. width: 100%;
  16. height: 65px;
  17. background: black;
  18. }
  19.  
  20. .menu>.menu-content {
  21. width: 200px;
  22. height: 65px;
  23. float: right;
  24. font-family: sans-serif, Arial;
  25. font-size: 12px;
  26. font-weight: bold;
  27. letter-spacing: -0.05em;
  28. position: relative;
  29. color: #fff;
  30. line-height: 65px;
  31. }
  32.  
  33. .menu>.menu-content>a {
  34. color: #fff;
  35. text-decoration: none;
  36. }
  37.  
  38. .arrow-up {
  39. width: 0;
  40. height: 0;
  41. position: absolute;
  42. border-left: 20px solid transparent;
  43. border-right: 20px solid transparent;
  44. border-bottom: 20px solid #fff;
  45. right: 151px;
  46. top: 50px;
  47. display: none;
  48. }
  49.  
  50. .login-form {
  51. position: absolute;
  52. width: 300px;
  53. height: auto;
  54. background: #fff;
  55. right: 58px;
  56. top: 60px;
  57. border-style: solid;
  58. border-radius: 3px;
  59. border-bottom: 5px solid gray;
  60. display: none;
  61. }
  62.  
  63. .login-form>form {
  64. width: 250px;
  65. margin: 25px auto;
  66. font-size: 20px;
  67. font-family: sans-serif, Arial;
  68. color: gray;
  69. letter-spacing: -0.05em;
  70. }
  71.  
  72. input[type="text"], input[type="password"] {
  73. width: 220px;
  74. height: 30px;
  75. border: 0px;
  76. outline: none;
  77. box-shadow: inset 0 0 10px #eee;
  78. border-radius: 3px;
  79. margin-bottom: 10px;
  80. margin-top: 5px;
  81. font-family: sans-serif, Arial;
  82. font-size: 16px;
  83. }
  84.  
  85. input[type="submit"] {
  86. width: 95%;
  87. height: 35px;
  88. background: #f44336;
  89. font-size: 20px;
  90. font-weight: bold;
  91. font-family: sans-serif, Arial;
  92. color: white;
  93. outline: none;
  94. border: 0px;
  95. border-radius: 3px;
  96. letter-spacing: -0.05em;
  97. }
  98.  
  99. input[type="submit"]: hover {
  100. background: #B21515;
  101. }
  102.  
  103. .fa {
  104. margin-right: 5px;
  105. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement