Spaces:
Build error
Build error
File size: 2,652 Bytes
0bfe2e3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.header {
text-align: center;
max-width: 800px;
border-radius: var(--borderRadius);
margin: 0 auto; /* Center the header within the content */
}
.content {
background-color: #000000; /* Slightly lighter black */
border-radius: var(--borderRadius);
box-shadow: 0 8px 16px rgb(0, 0, 0);
padding: 20px;
width: 80%;
max-width: 700px;
margin: 20px;
}
.section {
margin-bottom: 20px;
border-width: 1px;
border-style: solid;
border-radius: var(--borderRadius);
padding: 10px;
border-color: #777777;
}
.row {
display: flex;
justify-content: space-between;
align-items: center;
}
.keyInput {
flex: 0 0 20%;
}
.valueInput {
flex: 0 0 70%;
}
.input {
flex: 1;
margin-right: 10px;
padding: 5px;
border-radius: var(--borderRadius);
border: 1px solid #777777;
background-color: #1a1a1a;
color: white;
}
.icon {
background-color: transparent;
padding-top: 5px;
padding-left: 5px;
border: none;
transition: transform 0.2s;
}
.icon:hover {
transform: scale(1.2);
cursor: pointer;
}
.deleteButton {
background-color: #ff4d4d;
border: none;
color: white;
padding: 5px 10px;
border-radius: var(--borderRadius);
cursor: pointer;
transition: background-color 0.3s ease;
}
.deleteButton:hover {
background-color: #ff1a1a;
}
.help {
background-color: #121212;
border: 1px solid #333333;
border-radius: var(--borderRadius);
padding: 10px;
margin: 5px;
}
.buttonContainer {
display: flex;
flex-direction: column;
justify-content: center;
gap: 20px;
}
.button {
background-color: #ffffff; /* Green */
border: none;
color: black;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: var(--borderRadius);
box-shadow: 0 4px 8px rgba(255, 255, 255, 0.111);
transition:
transform 0.2s,
box-shadow 0.2s,
opacity 0.2s,
background-color 0.2s;
}
.outputContainer {
display: flex;
flex-direction: column;
gap: 10px;
}
.output {
background-color: #1a1a1a;
border-radius: var(--borderRadius);
padding: 10px;
color: white;
resize: vertical;
width: 99%;
overflow-x: auto;
}
.envSection {
padding: 15px;
font-size: 1.1em;
}
.envCommand {
display: flex;
align-items: center;
margin-top: 10px;
}
.envInput {
flex: 1;
padding: 5px;
border-radius: var(--borderRadius);
border: 1px solid #777777;
background-color: #1a1a1a;
color: white;
margin-right: 10px;
}
|