48 lines
936 B
CSS
48 lines
936 B
CSS
.main {
|
|
position: relative;
|
|
display: grid;
|
|
gap: 1rem;
|
|
justify-content: center;
|
|
place-content: center;
|
|
justify-items: center;
|
|
overflow: auto;
|
|
flex-grow: 1;
|
|
background-image: url('https://docs.ourworld.tf/static/images/jungle.jpg');
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-attachment: fixed;
|
|
}
|
|
|
|
.tabContainer {
|
|
width: 100%;
|
|
max-width: 500px;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.tabSelect {
|
|
display: flex;
|
|
justify-content: stretch;
|
|
gap: 0.125rem;
|
|
padding: 0.125rem;
|
|
margin: 0 auto 1.5rem;
|
|
border: 1px solid rgba(255, 255, 255, 0.15);
|
|
border-radius: 0.5rem;
|
|
}
|
|
|
|
.tabSelect > * {
|
|
width: 100%;
|
|
}
|
|
|
|
.tabContent {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
gap: 0.75rem;
|
|
padding: 2.5rem;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
border-radius: 1rem;
|
|
backdrop-filter: blur(10px);
|
|
}
|