mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
73 lines
995 B
CSS
73 lines
995 B
CSS
body {
|
|
background-color:#eaeaea;
|
|
}
|
|
|
|
#content-wrapper {
|
|
row-gap: 5px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-wrap: wrap;
|
|
height:100%;
|
|
width:100%;
|
|
}
|
|
|
|
section {
|
|
column-gap: 20px;
|
|
display:flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
background:white;
|
|
border-radius: 10px;
|
|
height:fit-content;
|
|
margin-bottom:4vh;
|
|
padding:20px;
|
|
width:fit-content;
|
|
}
|
|
|
|
.content-header {
|
|
color:#666;
|
|
letter-spacing:1px;
|
|
margin-bottom: 1vh;
|
|
}
|
|
|
|
.content-body {
|
|
column-gap: 20px;
|
|
display:flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.example {
|
|
align-items: center;
|
|
display:flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.caption {
|
|
margin:2vh 0 1vh 0;
|
|
}
|
|
|
|
|
|
#paragraph {
|
|
max-width: 750px;
|
|
}
|
|
|
|
|
|
#tabs {
|
|
column-gap: 10px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
margin-bottom:1em;
|
|
}
|
|
|
|
#tabs > div {
|
|
background:rgb(226, 166, 54);
|
|
border-radius: 5px;
|
|
color:#333;
|
|
cursor: pointer;
|
|
padding:6px 10px;
|
|
} |