1
0
Fork 0
peertube/client/src/app/modal/welcome-modal.component.scss

57 lines
856 B
SCSS
Raw Normal View History

2019-08-28 12:40:06 +00:00
@import '_mixins';
@import '_variables';
.modal-body {
font-size: 15px;
}
.subtitle {
font-weight: $font-semibold;
margin-bottom: 10px;
font-size: 16px;
}
2019-09-03 09:23:20 +00:00
.block-documentation .subtitle {
margin-bottom: 20px;
}
2019-08-28 12:40:06 +00:00
.block-configuration,
.block-instance {
margin-top: 30px;
}
li {
margin-bottom: 10px;
}
.configure-instance {
text-align: center;
font-weight: 600;
font-size: 18px;
2019-09-03 09:23:20 +00:00
margin: 20px 0 40px 0;
}
.columns {
display: flex;
.link-block {
@include disable-default-a-behaviour;
color: var(--mainForegroundColor);
padding: 10px;
transition: background-color 0.2s ease-in;
&:hover {
background-color: rgba(0, 0, 0, 0.05);
}
.link-title {
font-size: 16px;
font-weight: $font-semibold;
display: flex;
justify-content: center;
margin-bottom: 5px;
}
}
2019-08-28 12:40:06 +00:00
}