X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Babout%2Fabout-peertube%2Fabout-peertube.component.scss;h=cd1364c142043797c95fc0e196fcf4e57fd2789f;hb=f0876a2c3540b3198c1bd2d16bcd8dc47616c4e1;hp=1d8579ec1cd18eb650ffa6671145cbe9b622645e;hpb=78f912ed5733028ec2bf10c06c19f75b07943be2;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+about/about-peertube/about-peertube.component.scss b/client/src/app/+about/about-peertube/about-peertube.component.scss index 1d8579ec1..cd1364c14 100644 --- a/client/src/app/+about/about-peertube/about-peertube.component.scss +++ b/client/src/app/+about/about-peertube/about-peertube.component.scss @@ -2,21 +2,63 @@ @import '_mixins'; .about-peertube-title { - font-size: 20px; - font-weight: bold; + font-size: 25px; + text-align: center; + font-weight: $font-semibold; margin-bottom: 15px; } -.section-title { +.mascot { + display: block; + margin: 20px auto; +} + +/deep/ .section-title { font-weight: $font-semibold; font-size: 20px; margin-bottom: 5px; } .description { - margin-bottom: 30px; + margin-bottom: 100px; + text-align: center; +} + +.description, +.p2p-privacy, +my-about-peertube-contributors { + /deep/ { + p, li { + font-size: 15px; + } + } } .p2p-privacy-title { margin-top: 15px; -} \ No newline at end of file +} + +.privacy-contributors { + display: flex; + flex-direction: row; + + > div, + > my-about-peertube-contributors { + flex-basis: 100%; + display: block; + } + + .p2p-privacy { + h6 { + font-size: 20px; + } + } + + my-about-peertube-contributors { + margin: 0 40px 40px 0; + } + + @media screen and (max-width: $small-view) { + flex-direction: column; + } +}