sigit.io/src/index.css

134 lines
2.2 KiB
CSS
Raw Normal View History

2024-02-27 14:03:15 +00:00
:root {
line-height: 1.5;
font-weight: 400;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
text-size-adjust: 100%;
2024-07-30 10:23:38 +00:00
word-break: break-word;
2024-02-27 14:03:15 +00:00
}
2024-07-29 09:15:59 +00:00
* {
box-sizing: border-box;
2024-02-27 14:03:15 +00:00
}
2024-07-30 10:00:57 +00:00
@font-face {
font-family: 'Roboto';
font-weight: 300;
src: local('Roboto-Light'), url(./assets/roboto-font/Roboto-Light.ttf);
}
@font-face {
font-family: 'Roboto';
font-weight: 400;
src: local('Roboto-Regular'), url(./assets/Roboto-font/Roboto-Regular.ttf);
}
@font-face {
font-family: 'Roboto';
font-weight: 500;
src: local('Roboto-Medium'), url(./assets/Roboto-font/Roboto-Medium.ttf);
}
@font-face {
font-family: 'Roboto';
font-weight: 700;
src: local('Roboto-Bold'), url(./assets/Roboto-font/Robot-Bold.ttf);
}
2024-02-27 14:03:15 +00:00
body {
margin: 0;
min-width: 320px;
min-height: 100vh;
overflow-wrap: break-word;
2024-02-27 14:03:15 +00:00
}
.qrzap {
position: fixed;
top: 80px;
right: 20px;
z-index: 100;
2024-02-27 14:03:15 +00:00
}
#root {
min-height: 100vh;
display: flex;
flex-direction: column;
}
.hide-mobile {
@media (max-width: 639px) {
display: none !important;
}
}
.hide-desktop {
@media (min-width: 639px) {
display: none !important;
}
}
/*
* when this class is assigned to a component, user will not be able to select and copy the content from that component
*/
.no-select {
-webkit-user-select: none;
user-select: none;
}
/* Style <pre> tag of markdown editor affected by prism theme */
pre[class*='language-'][class*='w-md-editor-text-pre'] {
padding: 0;
line-height: normal;
}
/* Style <code> tag of markdown editor affected by prism theme */
code[class*='language-'][class*='code-highlight'] {
color: #3e3e3e;
}
.bold-link {
color: inherit !important;
font-weight: bold;
}
button:disabled {
opacity: 0.6;
cursor: not-allowed;
}
.dashed-field.Mui-focused fieldset {
border-color: unset !important;
}
.dashed-field fieldset {
border-style: dashed !important;
}
.pointer {
cursor: pointer;
}
.force-pointer {
cursor: pointer !important;
}
.inherit-color {
color: inherit;
}
.inherit-color-force {
color: inherit !important;
}
.profile-image {
width: 40px;
height: 40px;
border-radius: 50%;
overflow: hidden;
}