1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
| .hh{ color: #fffcfc; }
h1 { margin: 10px auto; height: 35px; background-color: rgb(0, 0, 0); border-bottom: 1px solid rgb(25, 24, 24); //overflow: hidden; //box-sizing: border-box; color: #f0f0f0; } h1 .content { margin-top: -1px; margin-left: -10px; //display: inline-block; width: auto; height: 40px; background-color: rgb(0, 0, 0); border-bottom-right-radius:100px; padding-right: 30px; padding-left: 30px; } h1:after { display: inline-block; content: " "; vertical-align: bottom; border-top: 40px solid #6d6968; border-right: 40px solid transparent; border-left: 40px solid transparent; } h2 { margin: 10px auto; height: 33px; background-color: rgb(0, 0, 0); border-bottom: 1px solid rgb(25, 24, 24); overflow: hidden; box-sizing: border-box; color: #f0f0f0; } h2 .content { margin-left: -10px; display: inline-block; width: auto; height: 40px; background-color: rgb(0, 0, 0); border-bottom-right-radius:100px; padding-right: 30px; padding-left: 30px; line-height: 40px; font-size: 16px; } h2:after { display: inline-block; content: " "; vertical-align: bottom; border-top: 30px solid #6d6968; border-right: 30px solid transparent; border-left: 30px solid transparent; } h3 { margin: 20px auto 5px; border-top: 1px solid rgb(221, 221, 221); box-sizing: border-box; color: #f0f0f0; background-color: rgb(0, 0, 0); border-bottom: 1px solid rgb(25, 24, 24); } h3 .content { margin-top: -1px; padding-top: 6px; padding-right: 5px; padding-left: 5px; font-size: 17px; border-top: 2px solid rgb(33, 33, 34); display: inline-block; line-height: 1.1; } h3:after { display: inline-block; content: " "; vertical-align: bottom; border-top: 24px solid #6d6968; border-right: 24px solid transparent; border-left: 24px solid transparent; } h4 { margin: 10px auto -1px; border-top: 1px solid rgb(221, 221, 221); box-sizing: border-box; color: #f0f0f0; background-color: rgb(0, 0, 0); border-bottom: 1px solid rgb(25, 24, 24); } h4 .content { margin-top: -1px; padding-top: 6px; padding-right: 5px; padding-left: 5px; font-size: 16px; border-top: 2px solid rgb(33, 33, 34); display: inline-block; line-height: 1.1; } h4:after { display: inline-block; content: " "; vertical-align: bottom; border-top: 18px solid #6d6968; border-right: 18px solid transparent; border-left: 18px solid transparent; } h5 { margin: 10px auto -1px; border-top: 1px solid rgb(221, 221, 221); box-sizing: border-box; color: #f0f0f0; background-color: rgb(0, 0, 0); border-bottom: 1px solid rgb(25, 24, 24); } h5 .content { margin-top: -1px; padding-top: 6px; padding-right: 5px; padding-left: 5px; font-size: 16px; border-top: 2px solid rgb(33, 33, 34); display: inline-block; line-height: 1.1; } h5:after { display: inline-block; content: " "; vertical-align: bottom; border-top: 15px solid #6d6968; border-right: 15px solid transparent; border-left: 15px solid transparent; }
|