forked from hamcha/tghandbook
82 lines
1.2 KiB
SCSS
82 lines
1.2 KiB
SCSS
#Welcome {
|
|
display: flex;
|
|
flex-direction: column;
|
|
&.center {
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
&:not(.center) {
|
|
header {
|
|
margin-top: 20px;
|
|
}
|
|
}
|
|
font-size: 12pt;
|
|
line-height: 1.4em;
|
|
header {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 20pt;
|
|
.icon {
|
|
max-width: 25vw;
|
|
width: 200px;
|
|
margin-right: 20px;
|
|
}
|
|
.type {
|
|
max-width: 50vw;
|
|
width: 400px;
|
|
}
|
|
}
|
|
|
|
.hidden {
|
|
width: 100%;
|
|
opacity: 0;
|
|
display: none;
|
|
transition: all 200ms;
|
|
}
|
|
|
|
h1,
|
|
h2 {
|
|
margin-top: 2em;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 15pt;
|
|
}
|
|
|
|
h3.nobg {
|
|
background: transparent;
|
|
margin-bottom: 0;
|
|
padding-bottom: 0;
|
|
position: relative;
|
|
z-index: 2;
|
|
&:before {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
code {
|
|
display: inline-block;
|
|
background-color: #222;
|
|
border-radius: 3px;
|
|
padding: 2px 5px;
|
|
}
|
|
|
|
.images {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
img {
|
|
margin: 10px;
|
|
}
|
|
}
|
|
|
|
.action_buttons {
|
|
text-align: center;
|
|
|
|
button {
|
|
font-size: 12pt;
|
|
padding: 10pt 12pt;
|
|
}
|
|
}
|
|
}
|