89 lines
1.9 KiB
CSS
89 lines
1.9 KiB
CSS
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
/* background: url("https://r2.fivemanage.com/QmVAYSlqeAlD4IxVbdvu5/images/lab.png")
|
|
no-repeat center center fixed;
|
|
background-size: cover;
|
|
background-color: transparent !important; */
|
|
box-sizing: border-box;
|
|
user-select: none;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 3px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: rgba(255, 255, 255, 0.5);
|
|
border-radius: 5px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background-color: rgba(120, 120, 120, 0.15);
|
|
}
|
|
|
|
/** Ultra Light */
|
|
@font-face {
|
|
font-family: "San Francisco";
|
|
font-weight: 100;
|
|
src: url("https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-ultralight-webfont.woff");
|
|
}
|
|
|
|
/** Thin */
|
|
@font-face {
|
|
font-family: "San Francisco";
|
|
font-weight: 200;
|
|
src: url("https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-thin-webfont.woff");
|
|
}
|
|
|
|
/** Regular */
|
|
@font-face {
|
|
font-family: "San Francisco";
|
|
font-weight: 400;
|
|
src: url("https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-regular-webfont.woff");
|
|
}
|
|
|
|
/** Medium */
|
|
@font-face {
|
|
font-family: "San Francisco";
|
|
font-weight: 500;
|
|
src: url("https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-medium-webfont.woff");
|
|
}
|
|
|
|
/** Semi Bold */
|
|
@font-face {
|
|
font-family: "San Francisco";
|
|
font-weight: 600;
|
|
src: url("https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-semibold-webfont.woff");
|
|
}
|
|
|
|
/** Bold */
|
|
@font-face {
|
|
font-family: "San Francisco";
|
|
font-weight: 700;
|
|
src: url("https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-bold-webfont.woff");
|
|
}
|
|
|
|
* {
|
|
font-family: "San Francisco";
|
|
}
|
|
|
|
h1 {
|
|
font-weight: 700;
|
|
}
|
|
h2 {
|
|
font-weight: 600;
|
|
}
|
|
h3 {
|
|
font-weight: 500;
|
|
}
|
|
p {
|
|
font-weight: 400;
|
|
}
|
|
p.thin {
|
|
font-weight: 200;
|
|
}
|
|
p.ultralight {
|
|
font-weight: 100;
|
|
}
|