dawid26pl

Red theme

Jun 13th, 2016
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.04 KB | None | 0 0
  1. @import url(https://fonts.googleapis.com/css?family=Roboto:300);
  2. .login-page {
  3. width: 360px;
  4. padding: 8% 0 0;
  5. margin: auto;
  6. }
  7. .form {
  8. position: relative;
  9. z-index: 1;
  10. background: #FFFFFF;
  11. max-width: 360px;
  12. margin: 0 auto 100px;
  13. padding: 45px;
  14. text-align: center;
  15. box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
  16. border-radius: 10px;
  17. }
  18. .form input {
  19. border-radius: 5px;
  20. font-family: "Roboto", sans-serif;
  21. outline: 0;
  22. background: #f2f2f2;
  23. width: 100%;
  24. border: 0;
  25. margin: 0 0 15px;
  26. padding: 15px;
  27. box-sizing: border-box;
  28. font-size: 14px;
  29. }
  30. .form button {
  31. border-radius: 5px;
  32. font-family: "Roboto", sans-serif;
  33. text-transform: uppercase;
  34. outline: 0;
  35. background: #cc0000;
  36. width: 100%;
  37. border: 0;
  38. padding: 15px;
  39. color: #FFFFFF;
  40. font-size: 14px;
  41. -webkit-transition: all 0.3 ease;
  42. transition: all 0.3 ease;
  43. cursor: pointer;
  44. }
  45. .form button:hover,.form button:active,.form button:focus {
  46. background: #cc0000;
  47. }
  48. .form .message {
  49. margin: 15px 0 0;
  50. color: #b3b3b3;
  51. font-size: 12px;
  52. }
  53. .form .message a {
  54. color: #006666;
  55. text-decoration: none;
  56. }
  57. .form .register-form {
  58. display: none;
  59. }
  60. .container {
  61. position: relative;
  62. z-index: 1;
  63. max-width: 300px;
  64. margin: 0 auto;
  65. }
  66. .container:before, .container:after {
  67. content: "";
  68. display: block;
  69. clear: both;
  70. }
  71. .container .info {
  72. margin: 50px auto;
  73. text-align: center;
  74. }
  75. .container .info h1 {
  76. margin: 0 0 15px;
  77. padding: 0;
  78. font-size: 36px;
  79. font-weight: 300;
  80. color: #1a1a1a;
  81. }
  82. .container .info span {
  83. color: #4d4d4d;
  84. font-size: 12px;
  85. }
  86. .container .info span a {
  87. color: #000000;
  88. text-decoration: none;
  89. }
  90. .container .info span .fa {
  91. color: #1F8066;
  92. }
  93. body {
  94. background: #ff0000;
  95. font-family: "Roboto", sans-serif;
  96. -webkit-font-smoothing: antialiased;
  97. -moz-osx-font-smoothing: grayscale;
  98. }
  99.  
  100. .welcome-text {
  101. text-align: center;
  102. margin-bottom: 10px;
  103. color: #FFFFFF;
  104. margin-top: 20px;
  105. }
Advertisement
Add Comment
Please, Sign In to add comment