mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-05 03:30:05 +00:00
105 lines
1.4 KiB
CSS
105 lines
1.4 KiB
CSS
:host {
|
|
display: block;
|
|
width: 100%;
|
|
padding: 80px 20px 20px 20px;
|
|
}
|
|
|
|
.header {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 15px 20px;
|
|
background: white;
|
|
border-bottom: 2px solid #3498db;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
z-index: 100;
|
|
height: 32px;
|
|
}
|
|
|
|
h1 {
|
|
color: #2c3e50;
|
|
margin: 0;
|
|
font-size: 20px;
|
|
}
|
|
|
|
.header-controls {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 15px;
|
|
}
|
|
|
|
.logout-btn {
|
|
padding: 8px 16px;
|
|
background: #e74c3c;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
|
|
&:hover {
|
|
background: #c0392b;
|
|
}
|
|
}
|
|
|
|
.requests-btn {
|
|
padding: 8px 16px;
|
|
background: #3498db;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
|
|
&:hover {
|
|
background: #2980b9;
|
|
}
|
|
}
|
|
|
|
.debug-toggle {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
|
|
label {
|
|
font-size: 14px;
|
|
color: #2c3e50;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
input[type='checkbox'] {
|
|
width: 18px;
|
|
height: 18px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.run-btn {
|
|
padding: 8px 16px;
|
|
background: #27ae60;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 4px;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
|
|
&:hover:not(:disabled) {
|
|
background: #229954;
|
|
}
|
|
|
|
&:disabled {
|
|
opacity: 0.6;
|
|
cursor: not-allowed;
|
|
}
|
|
}
|
|
|
|
.results {
|
|
margin-top: 64px;
|
|
width: 100%;
|
|
}
|