Advertisement
Guest User

Untitled

a guest
Jan 16th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. body{
  2. font-family: Verdana, Arial, sans-serif;
  3. color: #222222;
  4. }
  5. /* Bordered form */
  6. form{
  7. border: 3px solid #383839;
  8. }
  9.  
  10. /* Full-width inputs */
  11. input[type=text], input[type=password]{
  12. width: 100%;
  13. padding: 12px 20px;
  14. margin: 8px 0;
  15. display: inline-block;
  16. border: 1px solid #ccc;
  17. box-sizing: border-box;
  18. }
  19.  
  20. /* Set a style for all buttons */
  21. button{
  22. background-color: #31817B;
  23. color: white;
  24. padding: 14px 20px;
  25. margin: 8px 0;
  26. border: none;
  27. cursor: pointer;
  28. width: 100%;
  29. }
  30.  
  31. .btn {
  32. background-color: #31817B;
  33. color: white;
  34. padding: 14px 20px;
  35. margin: 8px 0;
  36. border: none;
  37. cursor: pointer;
  38. width: 100%;
  39. }
  40.  
  41.  
  42. /* Add a hover effect for buttons */
  43. button:hover{
  44. opacity: 0.8;
  45. }
  46.  
  47. /* Extra style for the cancel button(red) */
  48. .canvelbtn{
  49.  
  50. width: auto;
  51. padding: 10px 18px;
  52. background-color: #f44336;
  53. }
  54.  
  55. /* Center the avatar image inside this container */
  56. .imgcontainer{
  57. text-align: center;
  58. margin: 24px 0 12px 0;
  59. }
  60.  
  61. /* Avatar image */
  62. img.avatar{
  63. width: 40%;
  64. border-radius: 0%;
  65. }
  66.  
  67. /* Add padding to containers */
  68. .container{
  69. padding: 16px;
  70. }
  71.  
  72. /*The "Forgot passord" text */
  73. span.psw{
  74. float: right;
  75. padding-top: 16px;
  76. }
  77.  
  78. /*Change styles for span and cancel button on extra small screens */
  79. @media and(max-width: 300px) {
  80. span.psw{
  81. display: block;
  82. float: none;
  83. }
  84. .cancelbtn{
  85. width: 100%;
  86. }
  87.  
  88. }
  89.  
  90. #header {
  91. background-color: #383839;
  92. height: 60px;
  93. padding: 10px;
  94. border-radius: 5px;
  95. }
  96.  
  97. #header #main-menu a {
  98. color: white;
  99. text-decoration: none;
  100. padding: 6px 8px;
  101. }
  102.  
  103. #header #main-menu a:hover {
  104. border-left: 2px red solid;
  105. }
  106.  
  107. #header #main-menu li {
  108. display: inline;
  109. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement