asb_cloud_front/src/styles/index.css

92 lines
1.0 KiB
CSS
Raw Normal View History

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;
}
.flex-direction-column {
flex-direction: column;
}
.d-inline {
display: inline;
}
.d-none {
display: none;
}
.w-15 {
width: 15%
}
.w-100 {
width: 100%
}
2021-10-06 13:57:04 +05:00
.m-0 {
margin: 0;
}
.mt-8px {
margin-top: 8px;
}
.mt-20px {
margin-top: 20px;
}
.mb-20px {
margin-bottom: 20px;
}
.ml-5px {
margin-left: 5px;
}
.ml-10px {
margin-left: 10px;
}
.ml-30px {
margin-left: 30px;
}
2021-09-02 16:33:02 +05:00
.h-100vh {
height: 100vh;
}
.vertical-align-center {
vertical-align: center;
}
2021-04-02 17:22:34 +05:00
.text-align-r-container {
width: 100%;
text-align: right;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
2021-04-02 17:22:34 +05:00
.linkDocuments {
color: #000;
}
.linkDocuments:hover {
color: #c32828;
}
.container{
width: 100%;
}