1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- h4 {
- margin: 8px 0 8px 0;
- font-weight: bold;
- }
- b {
- font-weight: bold;
- }
- button {
- outline: none;
- cursor: pointer;
- background: #ccc;
- border: none;
- color: #333;
- margin: 2px 0 2px 2px;
- padding: 10px;
- transition: all 0.3s;
- }
- button:hover {
- background: #b1b1b1;
- }
- ul {
- margin-left: 10px;
- padding-left: 15px;
- list-style: disc;
- }
- /* Let's get this party started */
- ::-webkit-scrollbar {
- padding-top: 10px;
- width: 8px;
- height: 8px;
- }
- /* Track */
- ::-webkit-scrollbar-track {
- border-radius: 0;
- width: 3px;
- height: 3px;
- background: rgba(55, 55, 55, 0.1);
- }
- /* Handle */
- ::-webkit-scrollbar-thumb {
- border-radius: 0;
- width: 8px;
- height: 8px;
- background: rgba(155, 155, 155, 0.8);
- }
- ::-webkit-scrollbar-thumb:window-inactive {
- background: rgba(55, 55, 55, 0.8);
- }
|