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;
|
|
|
|
}
|
|
|
|
|
2021-10-05 17:55:20 +05:00
|
|
|
.flex-direction-column {
|
2021-10-05 14:57:56 +05:00
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2021-06-07 16:03:50 +05:00
|
|
|
.d-inline {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.d-none {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2021-10-04 18:06:42 +05:00
|
|
|
.w-15 {
|
|
|
|
width: 15%
|
|
|
|
}
|
|
|
|
|
2021-06-07 16:03:50 +05:00
|
|
|
.w-100 {
|
|
|
|
width: 100%
|
|
|
|
}
|
|
|
|
|
2021-10-06 13:57:04 +05:00
|
|
|
.m-0 {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2021-10-05 14:57:56 +05:00
|
|
|
.mt-8px {
|
|
|
|
margin-top: 8px;
|
|
|
|
}
|
|
|
|
|
2021-06-07 16:03:50 +05:00
|
|
|
.mt-20px {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
2021-08-24 16:32:32 +05:00
|
|
|
.mb-20px {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
2021-06-07 16:03:50 +05:00
|
|
|
.ml-5px {
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
2021-10-05 14:57:56 +05:00
|
|
|
.ml-10px {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
|
2021-06-07 16:03:50 +05:00
|
|
|
.ml-30px {
|
|
|
|
margin-left: 30px;
|
|
|
|
}
|
|
|
|
|
2021-09-02 16:33:02 +05:00
|
|
|
.h-100vh {
|
|
|
|
height: 100vh;
|
|
|
|
}
|
|
|
|
|
2021-06-07 16:03:50 +05:00
|
|
|
.vertical-align-center {
|
|
|
|
vertical-align: center;
|
|
|
|
}
|
2021-04-02 17:22:34 +05:00
|
|
|
|
2021-09-01 11:58:50 +05:00
|
|
|
.text-align-r-container {
|
|
|
|
width: 100%;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2021-07-22 14:53:30 +05:00
|
|
|
.linkDocuments {
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.linkDocuments:hover {
|
|
|
|
color: #c32828;
|
|
|
|
}
|
|
|
|
|
2021-08-27 17:11:30 +05:00
|
|
|
.container{
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|