]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/+about/about-peertube/about-peertube.component.scss
Add ListOverflow component to prevent sub-menu overflow
[github/Chocobozzz/PeerTube.git] / client / src / app / +about / about-peertube / about-peertube.component.scss
index 0d2e2bb68d65342919083a8b72723b7e9f021b3b..a43eb6fe163a939bb17d2856eb0b0ca011172eaf 100644 (file)
@@ -1,22 +1,69 @@
 @import '_variables';
 @import '_mixins';
 
+.root {
+  max-width: 1200px;
+  margin: auto;
+}
+
 .about-peertube-title {
   font-size: 25px;
-  font-weight: bold;
+  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;
+  text-align: center;
 }
 
-.p2p-privacy-title {
-  margin-top: 15px;
-}
\ No newline at end of file
+.documentation {
+  display: flex;
+  flex-wrap: wrap;
+  margin: 50px 0;
+  justify-content: center;
+
+  .card {
+    margin: 30px;
+    flex-basis: 300px;
+    font-size: 15px;
+  }
+}
+
+.description,
+.p2p-privacy,
+my-about-peertube-contributors {
+  /deep/ {
+    p, li {
+      font-size: 15px;
+    }
+  }
+}
+
+.privacy-contributors {
+  display: flex;
+  flex-direction: column;
+
+  .p2p-privacy {
+    .section-title {
+      margin: 50px 0 20px;
+      text-align: center;
+    }
+
+    h6 {
+      font-size: 20px;
+      margin-top: 15px;
+    }
+  }
+}