Advertisement
HPZK97

mysql_1

Oct 15th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.95 KB | None | 0 0
  1. .container {
  2.     box-sizing: border-box;
  3.     width: 100%;
  4.     padding: 1rem;
  5.     border: 1px solid black;
  6. }
  7.  
  8. .tabs-container {
  9.     display: inline-block;
  10.     width: calc(100% - 4.6rem);
  11. }
  12.  
  13. .btn-container {
  14.     display: inline-block;
  15.     width: 4.3rem;
  16. }
  17.  
  18. .tab {
  19.     box-sizing: border-box;
  20.     float: left;
  21.     width: calc(20% - 0.2rem);
  22.     height: 4rem;
  23.     line-height: 4rem;
  24.     border: 1px solid darkblue;
  25.     text-align: center;
  26.     vertical-align: middle;
  27.     font-size: 2.5rem;
  28.     margin: 0 0.1rem;
  29. }
  30.  
  31. .add-btn {
  32.     box-sizing: border-box;
  33.     float: left;
  34.     width: 4rem;
  35.     height: 4rem;
  36.     line-height: 4rem;
  37.     background: green;
  38.     text-align: center;
  39.     vertical-align: middle;
  40.     font-size: 30px;
  41.     color: white;
  42.     font-weight: bold;
  43.     cursor: pointer;
  44.     margin: 0px;
  45.     margin-left: 0.3rem;
  46.     user-select: none;
  47. }
  48.  
  49. a {
  50.     user-select: none;
  51.     text-decoration: none;
  52.     color: red;
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement