Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.23 KB | None | 0 0
  1. /*Employee Card*/
  2. body, html {
  3.     background: #EFF7FE;
  4.     height: 100%;
  5. }
  6.  
  7. .main-section {
  8.     border: 1px solid #e03222;
  9.     border-radius: 10px;
  10.     background-color: #fff;
  11. }
  12.  
  13. .profile-header {
  14.     background-color: #e44e40;
  15.     border-radius: 10px;
  16.     height: 110px;
  17. }
  18.  
  19. .profile-header2 {
  20.     background-color: #e44e40;
  21.     border-radius: 10px;
  22.     height: 55px;
  23. }
  24.  
  25. .user-detail {
  26.     margin: -70px 0px 30px 0px;
  27. }
  28.  
  29. .user-detail-sm {
  30.     margin: -30px 0px 30px 0px;
  31. }
  32.  
  33. .user-detail2 {
  34.     margin: -40px 10px 10px 10px;
  35. }
  36.  
  37. .user-detail img {
  38.     height: 250px;
  39.     width: 250px;
  40. }
  41.  
  42. .user-detail-sm img {
  43.     height: 100px;
  44.     width: 100px;
  45. }
  46.  
  47. .user-detail h5 {
  48.     margin: 15px 0px 5px 0px;
  49. }
  50.  
  51. .maincard {
  52.     margin-bottom: 150px;
  53.     margin-top: 50px;
  54. }
  55.  
  56.  
  57. /*Confirm Button*/
  58. .btn-custom {
  59.     margin-top: 20px;
  60.     width: 100%;
  61.     color:#fff;
  62.     background: #e03222        
  63. }
  64.  
  65.     .btn-custom:hover {
  66.         margin-top: 20px;
  67.         width: 100%;
  68.         color: #fff;
  69.         background: #c42a1c
  70.     }
  71.  
  72.  
  73. /*4x4 Grid*/
  74. .column {
  75.     float: left;
  76.     width: 25%;
  77. }
  78.  
  79. /* Clear floats after the columns */
  80. .row:after {
  81.     content: "";
  82.     display: table;
  83.     clear: both;
  84. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement