2021-05-27 12:53:42 +05:00
|
|
|
::-webkit-scrollbar {
|
|
|
|
width: 0;
|
|
|
|
}
|
|
|
|
|
2021-03-31 15:54:02 +05:00
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
|
|
|
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
|
|
|
sans-serif;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
}
|
|
|
|
|
2021-06-07 16:03:50 +05:00
|
|
|
.d-flex {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.d-inline {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.d-none {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.w-100 {
|
|
|
|
width: 100%
|
|
|
|
}
|
|
|
|
|
|
|
|
.mt-20px {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ml-5px {
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ml-30px {
|
|
|
|
margin-left: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.vertical-align-center {
|
|
|
|
vertical-align: center;
|
|
|
|
}
|
2021-04-02 17:22:34 +05:00
|
|
|
|
2021-03-31 15:54:02 +05:00
|
|
|
code {
|
|
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
|
|
|
monospace;
|
|
|
|
}
|
2021-04-02 17:22:34 +05:00
|
|
|
|