forked from ddrilling/asb_cloud_front
118 lines
1.2 KiB
CSS
118 lines
1.2 KiB
CSS
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;
|
|
}
|
|
|
|
.flex-1 {
|
|
flex: 1;
|
|
}
|
|
|
|
.w-15 {
|
|
width: 15%
|
|
}
|
|
|
|
.w-33 {
|
|
width: 33%
|
|
}
|
|
|
|
.w-50 {
|
|
width: 50%
|
|
}
|
|
|
|
.w-100 {
|
|
width: 100%
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.h-100vh {
|
|
height: 100vh;
|
|
}
|
|
|
|
.vertical-align-center {
|
|
vertical-align: center;
|
|
}
|
|
|
|
.text-align-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.text-align-r-container {
|
|
width: 100%;
|
|
text-align: right;
|
|
}
|
|
|
|
code {
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
|
monospace;
|
|
}
|
|
|
|
.linkDocuments {
|
|
color: #000;
|
|
}
|
|
|
|
.linkDocuments:hover {
|
|
color: #c32828;
|
|
}
|
|
|
|
.container{
|
|
width: 100%;
|
|
}
|
|
|
|
.login-button {
|
|
width: 20%;
|
|
margin: auto;
|
|
}
|
|
|
|
.register-button {
|
|
width: 50%;
|
|
margin: auto;
|
|
}
|
|
|