Advertisement
Guest User

style.css

a guest
Mar 28th, 2020
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1. body {
  2. font: 20px 'Open Sans', sans-serif;
  3. font-weight: bold;
  4. background: black;
  5. user-select: none;
  6. }
  7.  
  8. a:link {
  9. text-decoration: none;
  10. color: #bbb;
  11. }
  12.  
  13. a:visited {
  14. text-decoration: none;
  15. color: #bbb;
  16. }
  17.  
  18. a:hover {
  19. text-decoration: none;
  20. color: white;
  21. }
  22.  
  23. section {
  24. display: none;
  25. padding: 10px;
  26. }
  27.  
  28. input.tab {
  29. display: none;
  30. }
  31.  
  32. label {
  33. display: inline-block;
  34. padding: 8px;
  35. font-weight: 500;
  36. color: #888;
  37. }
  38.  
  39. label:hover {
  40. color: #bbb;
  41. cursor: pointer;
  42. }
  43.  
  44. input:checked+label {
  45. color: white;
  46. /* border-bottom: 3px solid red;*/
  47. }
  48.  
  49. #tab1:checked~#content1,
  50. #tab2:checked~#content2,
  51. #tab3:checked~#content3,
  52. #tab4:checked~#content4 {
  53. display: block;
  54. }
  55.  
  56. .canales {
  57. text-align: center;
  58. }
  59.  
  60. .canales .card {
  61. display: inline-block;
  62. background: #E8E8E8;
  63. width: 120px;
  64. height: 120px;
  65. margin: 4px;
  66. border-radius: 15%;
  67. position: relative;
  68. box-shadow: 0 2px 2px 0 rgba(51, 51, 51, 0.14), 0 3px 1px -2px rgba(51, 51, 51, 0.2), 0 1px 5px 0 rgba(51, 51, 51, 0.12);
  69. }
  70.  
  71. .canales .card img {
  72. margin: auto;
  73. top: 0;
  74. left: 0;
  75. right: 0;
  76. bottom: 0;
  77. position: absolute;
  78. }
  79.  
  80. .dropdown {
  81. position: relative;
  82. display: inline-block;
  83. }
  84.  
  85. .dropdown-menu {
  86. position: absolute;
  87. top: 100%;
  88. left: 0;
  89. z-index: 1;
  90. display: none;
  91. float: left;
  92. min-width: 130px;
  93. padding: 5px 0;
  94. margin: 0 0 0;
  95. font-size: 20px;
  96. text-align: left;
  97. list-style: none;
  98. background-color: #fff;
  99. -webkit-background-clip: padding-box;
  100. background-clip: padding-box;
  101. border: 1px solid #ccc;
  102. border: 1px solid rgba(0, 0, 0, .15);
  103. border-radius: 4px;
  104. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  105. box-shadow: 0 6px 12px rgba(0, 0, 0, .175)
  106. }
  107.  
  108. .dropdown-menu>li>a {
  109. display: block;
  110. padding: 3px 20px;
  111. clear: both;
  112. font-weight: 400;
  113. line-height: 1.42857143;
  114. color: #333;
  115. white-space: nowrap
  116. }
  117.  
  118. .dropdown-menu>li>a:focus,
  119. .dropdown-menu>li>a:hover {
  120. color: #262626;
  121. text-decoration: none;
  122. background-color: #f5f5f5
  123. }
  124.  
  125. .open>.dropdown-menu {
  126. display: block
  127. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement