Spaces:
Running
on
Zero
Running
on
Zero
File size: 1,032 Bytes
4d6f2bc 6278196 4d6f2bc 6278196 4d6f2bc 6278196 4d6f2bc 43c9aed 4d6f2bc |
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 |
.accordion {
background-color: transparent;
}
.accordion > button {
justify-content: flex-start;
}
.accordion > button > span:first-child {
width: auto;
margin-right: 4px;
}
.gr-group div {
gap: 0px;
}
.tabs, .tabitem, .tab-nav, .tab-nav > .selected {
border-width: 0px;
}
#about {
padding: 20px 24px;
}
#gallery {
background-color: var(--bg);
}
#gallery > div:nth-child(2) {
overflow-y: hidden;
}
.dark #gallery {
background-color: var(--background-fill-primary);
}
#intro {
display: flex;
align-items: center;
}
#intro > svg {
display: inline-block;
width: 1.75rem;
height: 1.75rem;
margin-left: 0.5rem;
fill: #047857 !important;
animation: spin 3s linear infinite reverse;
}
#intro > svg:is(.dark *) {
fill: #10b981 !important;
}
@keyframes spin {
100% { transform: rotate(360deg); }
}
#menu-tabs {
margin-top: 12px;
}
#prompt {
background-color: var(--bg);
}
.dark #prompt {
background-color: var(--background-fill-primary);
}
#random-seed > button {
margin-right: 8px;
}
|