Spaces:
Build error
Build error
File size: 1,878 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 |
.container {
display: flex;
flex-direction: column;
gap: 10px;
}
.addonSelector {
display: flex;
flex-direction: column;
gap: 10px;
margin-bottom: 10px;
}
.addonSelector button {
padding: 5px 10px;
width: 100%;
height: 40px;
border-radius: var(--borderRadius);
border: none;
background-color: #ffffff;
color: #000;
cursor: pointer;
box-shadow: 0 4px 8px rgba(255, 255, 255, 0.041);
transition:
background-color 0.3s,
transform 0.2s,
box-shadow 0.3s;
}
.addonSelector button:hover {
background-color: #f1f1f1;
transform: scale(1.01);
box-shadow: 0 4px 8px rgba(206, 206, 206, 0.19);
}
.addonSelector button:active {
transform: scale(0.99);
}
.card {
background-color: #1a1a1a; /* Slightly lighter black */
border-radius: var(--borderRadius);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
padding: 10px;
display: flex;
flex-direction: column;
gap: 10px;
}
.cardHeader {
display: flex;
justify-content: space-between;
align-items: center;
}
.cardBody {
display: flex;
flex-direction: column;
gap: 10px;
}
.option {
display: flex;
flex-direction: column;
border: 1px solid #a0a0a0;
border-radius: var(--borderRadius);
padding: 10px;
}
.option label {
margin-bottom: 5px;
display: flex;
justify-content: space-between;
align-items: center;
}
.option small {
color: #aaa;
margin-top: 5px;
}
.required {
color: #ffffff;
margin-left: 5px;
}
.actions {
display: flex;
align-items: center;
}
.actionButton {
background-color: transparent;
border-radius: var(--borderRadius);
display: flex;
margin: 5px;
font-size: 1.2em;
align-items: center;
border-width: 0;
transition: transform 0.2s;
-webkit-tap-highlight-color: transparent;
}
.actionButton:hover {
transform: scale(1.1);
cursor: pointer;
}
.actionButton:active {
transform: scale(0.9);
}
|