forked from ddrilling/asb_cloud_front
59 lines
759 B
CSS
59 lines
759 B
CSS
::-webkit-scrollbar {
|
|
width: 0;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
code {
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
|
monospace;
|
|
}
|
|
|
|
.linkDocuments {
|
|
color: #000;
|
|
}
|
|
|
|
.linkDocuments:hover {
|
|
color: #c32828;
|
|
}
|
|
|