123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- // Reset default browser styles
- * {
- box-sizing: border-box;
- }
- body,
- #root {
- min-height: 100vh;
- }
- html,
- body,
- ul,
- ol,
- li,
- dl,
- dt,
- dd,
- h1,
- h2,
- h3,
- h4,
- h5,
- h6,
- pre,
- code,
- form,
- fieldset,
- legend,
- input,
- textarea,
- p,
- blockquote,
- th,
- td,
- hr,
- button {
- margin: 0;
- padding: 0;
- font-size: 100%;
- font-family: inherit;
- vertical-align: baseline;
- border: 0 none;
- color: inherit;
- background: transparent;
- box-sizing: border-box;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- // Remove list styles on ul, ol
- ul,
- ol {
- list-style: none;
- }
- // Remove link styles
- a {
- text-decoration: none;
- color: inherit;
- }
- // Remove table border
- table {
- border-collapse: collapse;
- border-spacing: 0;
- }
- // Remove input styling for IE
- input[type='text'],
- input[type='password'],
- input[type='number'],
- textarea {
- appearance: none;
- -webkit-appearance: none;
- -moz-appearance: none;
- // border-radius: 0;
- }
- // Remove button styling for IE
- button,
- input[type='submit'],
- input[type='reset'] {
- appearance: none;
- -webkit-appearance: none;
- -moz-appearance: none;
- border: 0 none;
- background: none;
- padding: 0;
- cursor: pointer;
- }
- // Remove outline on focus
- *:focus {
- outline: none;
- }
|