Spaces:
Running
Running
File size: 956 Bytes
503881f |
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 |
@charset "UTF-8";
@font-face {
font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
font-style: normal;
font-display: swap;
}
:focus {
outline: 0;
}
img {
-webkit-tap-highlight-color: transparent;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
image-rendering: high-quality;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
-webkit-font-smoothing: antialiased;
-webkit-tap-highlight-color: rgba(0,0,0,0);
list-style: none;
font-weight: 400;
border: none;
background: none;
font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
::selection {
color: #0B79ED;
background: 0 0;
}
::-moz-selection {
color: #0B79ED;
background: 0 0;
}
html {
background-color: #fff;
scroll-behavior: smooth;
}
a {
text-decoration: none;
cursor: pointer;
}
|