mirror of
https://github.com/sasjs/adapter.git
synced 2025-12-11 01:14:36 +00:00
62 lines
1.1 KiB
SCSS
62 lines
1.1 KiB
SCSS
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;
|
|
background-color: #1f2027;
|
|
color: #eee;
|
|
}
|
|
|
|
* {
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
|
|
}
|
|
|
|
input {
|
|
padding: 8px;
|
|
border-radius: 3px;
|
|
border: none;
|
|
font-size: 1.125em;
|
|
}
|
|
|
|
.submit-button {
|
|
border: none;
|
|
border-radius: 3px;
|
|
padding: 8px;
|
|
background-color: #f9e804;
|
|
color: black;
|
|
font-size: 0.8em;
|
|
|
|
&.disabled {
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-top: 16px;
|
|
}
|
|
|
|
.loading-spinner {
|
|
display: inline-block;
|
|
width: 50px;
|
|
height: 50px;
|
|
border: 3px solid rgba(255, 255, 255, 0.3);
|
|
border-radius: 50%;
|
|
border-top-color: #fff;
|
|
animation: spin 1s ease-in-out infinite;
|
|
-webkit-animation: spin 1s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
to {
|
|
-webkit-transform: rotate(360deg);
|
|
}
|
|
}
|
|
@-webkit-keyframes spin {
|
|
to {
|
|
-webkit-transform: rotate(360deg);
|
|
}
|
|
}
|