123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- @import "./fonts/roboto/font.css";
- @import "./fonts/roboto-mono/font.css";
- * {
- text-shadow: 0 0 1px rgba(0, 0, 0, 0.05);
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- html,
- body {
- font-family: "Avenir", Helvetica, Arial, sans-serif;
- font-family: Roboto, sans-serif;
- padding: 0;
- margin: 0;
- height: 100vh;
- max-width: 100%;
- max-height: 100%;
- }
- h4 {
- margin: 8px 0 8px 0;
- font-weight: bold;
- }
- b {
- font-weight: bold;
- }
- label {
- margin-top: 8px;
- }
- button {
- background: transparent;
- position: relative;
- outline: none;
- cursor: pointer;
- border: none;
- padding: 10px;
- transition: all var(--transition-speed);
- }
- button::-moz-focus-inner {
- border: 0;
- }
- button:disabled {
- opacity: 0.2;
- cursor: none;
- pointer-events: none;
- user-select: none;
- filter: saturate(0.2);
- }
- button::after,
- .hover::after {
- content: " ";
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- transition: all var(--transition-speed);
- opacity: 0;
- background: #222 !default;
- }
- button:hover::after,
- .hover:hover::after {
- opacity: 0.2 !default;
- }
- ul {
- margin-left: 10px;
- padding-left: 15px;
- list-style: disc;
- }
- small {
- opacity: 0.7;
- font-size: 10px;
- color: #555;
- }
- input {
- outline: none;
- background: #fff;
- width: 100%;
- border: none;
- padding: 10px;
- }
- textarea {
- outline: none;
- background: #fff;
- width: 100%;
- border: none;
- padding: 10px;
- }
- /* 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);
- }
- @import "./default-theme.css";
|