Advertisement
Guest User

CSS ME

a guest
Jun 23rd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1. body{
  2. background: url("../image/1.png");
  3. background-size: cover;
  4. }
  5.  
  6. div .jarak p{
  7. text-align: center;
  8. padding-top: 55px;
  9. font-weight: bold;
  10. }
  11.  
  12. div a{
  13. text-decoration: none;
  14. color: #000;
  15. }
  16.  
  17. a:hover{
  18. color: blue;
  19. }
  20.  
  21. h2 {
  22. color:#fff;
  23.  
  24. text-align: center;
  25. margin: 0px;
  26. padding-top: 80px;
  27. }
  28.  
  29. .loginbox {
  30. position: absolute;
  31. /* top: 50%; */
  32. /* left: 50%; */
  33. /* transform: translate(-50%, -50%); */
  34. width:350px;
  35. height: 420px;
  36. box-sizing: border-box;
  37. background: rgb(0,0,0,0.5);
  38. margin: 90px 500px 0px;
  39. animation: animation 3s ease;
  40. }
  41.  
  42. @keyframes animation{
  43. 0% {
  44. margin: -429px 500px 0px;
  45. }
  46. 100% {
  47. margin: 90px 500px 0px;
  48. }
  49. }
  50.  
  51. .icon {
  52. overflow: hidden;
  53. width:35%;
  54. border-radius: 50%;
  55. position: absolute;
  56. top: calc(-100px/2);
  57. left: calc(80% - 50%);
  58. }
  59.  
  60. .jarak {
  61. /*! padding-left: 70px; */
  62. /*! padding-top: 20px; */
  63. display: -moz-inline-grid;
  64. }
  65.  
  66. ul {
  67. margin:0px;
  68. padding-left:20px;
  69. /*! padding-top:30px; */
  70. margin-top: 18px;
  71. font-size: 20px;
  72. }
  73.  
  74. div ul li{
  75. list-style-type: none;
  76. vertical-align: bottom;
  77. }
  78.  
  79. .form-jarak label{
  80. margin: 0px;
  81. padding: 0px;
  82. font-weight: bold;
  83. color: #fff;
  84. }
  85.  
  86. .form-jarak input{
  87. width: 300px;
  88. height: 30px;
  89. }
  90.  
  91. .form-jarak input[type="text"],
  92. .form-jarak input[type="password"]{
  93. border: none;
  94. border-bottom: 1px solid #fff;
  95. background: transparent;
  96. outline: none;
  97. }
  98.  
  99. .form-jarak input[type="submit"]{
  100. border: none;
  101. outline: none;
  102. height: 40px;
  103. color: #fff;
  104. font-size: 16px;
  105. background: #1366e4;
  106. margin-top: 20px;
  107. border-radius: 19px;
  108. }
  109.  
  110. .wrongbox p {
  111. text-align: center;
  112. border-radius: 20px;
  113. /* border: 2px solid; */
  114. width: 70%;
  115. color: white;
  116. margin: 10px 50px 0px;
  117. padding: 5px 0px;
  118. background: #e22537;
  119. }
  120.  
  121. .form-jarak input[type="submit"]:hover {
  122. background: #330cf9;
  123. cursor:pointer;
  124. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement