Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. .api section {
  2. border: 1px solid #EEE;
  3. margin: 20px 0px;
  4. padding: 20px;
  5. }
  6.  
  7. .api .sidebar {
  8. height: calc(100vh - 60px);
  9. margin-top: 60px;
  10. }
  11.  
  12. .api .sidebar-list {
  13. overflow: visible;
  14. }
  15.  
  16. .api .sidebar-list-1 .sidebar-link {
  17. padding: 12px;
  18. }
  19.  
  20. .api .card {
  21. background: #FFF;
  22. border-radius: 4px;
  23. box-shadow: 0 2px 8px rgba(14, 20, 26, 0.1);
  24. position: relative;
  25. }
  26.  
  27. .api .entity-filter {
  28. margin-top: 20px;
  29. padding: 20px;
  30. }
  31.  
  32. .api .entity-container {
  33. &.public {
  34. .entity[data-access="public"] {
  35. display: none;
  36. }
  37. }
  38.  
  39. &.protected {
  40. .entity[data-access="protected"] {
  41. display: none;
  42. }
  43. }
  44.  
  45. &.private {
  46. .entity[data-access="private"] {
  47. display: none;
  48. }
  49. }
  50. }
  51.  
  52. .api .entity .entity-name {
  53. margin-top: 0;
  54. }
  55.  
  56. .api .entity-name-type, .api .entity-access {
  57. color: #999;
  58. }
  59.  
  60. .api .entity-link {
  61. position: absolute;
  62. right: 20px;
  63. text-decoration: underline;
  64. top: 20px;
  65. }
  66.  
  67. .entity-description, .entity-params, .entity-returns {
  68. margin: 20px 0;
  69. }
  70.  
  71. .entity-params .table {
  72. width: 100%;
  73. }
  74.  
  75. .entity-members h2 {
  76. margin: 40px 0 20px;
  77. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement