joinpeertube/app/assets/scss/main.scss

85 lines
1.5 KiB
SCSS
Raw Normal View History

2019-09-06 13:42:29 +00:00
@import "_variables";
@font-face {
font-family: 'Proza Libre';
font-style: normal;
font-display: swap;
font-weight: 400;
src: local('Proza Libre Regular '),
local('Proza Libre-Regular'),
url('/assets/fonts/proza-libre-v4-latin-regular.woff2') format('woff2')
}
@font-face {
font-family: 'Proza Libre';
font-style: normal;
font-display: swap;
font-weight: 600;
src: local('Proza Libre SemiBold '),
local('Proza Libre-SemiBold'),
url('/assets/fonts/proza-libre-v4-latin-600.woff2') format('woff2')
}
2018-09-21 21:00:42 +00:00
/* Default */
html {
position: relative;
min-height: 100%;
}
body {
2018-10-31 09:59:29 +00:00
font-family: 'Open Sans', sans-serif;
2018-09-21 21:00:42 +00:00
font-size: 16px;
2019-09-06 13:42:29 +00:00
background-color: #ffad5c;
2018-09-21 21:00:42 +00:00
}
2019-09-06 13:42:29 +00:00
main {
padding: 0 70px;
background-color: #fff;
box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.35);
border: solid 1px #d9d9d9;
2018-09-21 21:00:42 +00:00
}
2019-09-06 13:42:29 +00:00
.caret::after {
2018-09-21 21:00:42 +00:00
display: inline-block;
2019-09-06 13:42:29 +00:00
vertical-align: 0.255em;
content: "";
border-top: 0.3em solid;
border-right: 0.3em solid transparent;
border-bottom: 0;
border-left: 0.3em solid transparent;
2018-09-21 21:00:42 +00:00
}
2019-09-06 13:42:29 +00:00
.jpt-button {
display: flex;
justify-content: center;
font-size: 16px;
font-weight: $font-semibold;
border: 3px solid $orange;
border-radius: 4px;
background-color: transparent;
2019-09-06 13:42:29 +00:00
.icon {
width: 18px;
height: 18px;
}
2018-09-21 21:00:42 +00:00
}
2019-09-06 13:42:29 +00:00
.jpt-button-light {
border-width: 2px;
}
2019-09-06 13:42:29 +00:00
.section-title {
font-size: 34px;
font-weight: $font-semibold;
margin: 100px 0;
display: flex;
align-items: center;
2018-09-21 21:00:42 +00:00
2019-09-06 13:42:29 +00:00
.border-title {
margin-left: 40px;
height: 3px;
background-color: $orange;
flex-grow: 1;
2018-09-21 21:00:42 +00:00
}
}