allow limiting video-comments rss feeds to an account or video channel
[oweals/peertube.git] / client / src / app / modal / welcome-modal.component.scss
index ab57bb99350a3a9984d13b5fa8169f88d837a46f..a93dbcef9538464e18ab677789c4e0d91e4460be 100644 (file)
@@ -5,8 +5,21 @@
   font-size: 15px;
 }
 
-.action-button-cancel {
-  margin-right: 0 !important;
+.two-columns {
+  display: flex;
+  align-items: center;
+  justify-content: center;
+  margin-top: 50px;
+}
+
+.mascot-fw {
+  width: 170px;
+}
+
+.mascot {
+  display: block;
+  min-width: 170px;
+  margin-right: 2rem;
 }
 
 .subtitle {
   font-size: 16px;
 }
 
-.block-configuration,
-.block-instance {
-  margin-top: 30px;
+.block-documentation {
+  .subtitle {
+    margin-bottom: 20px;
+  }
 }
 
 li {
@@ -28,4 +42,48 @@ li {
   text-align: center;
   font-weight: 600;
   font-size: 18px;
+  margin: 20px 0 40px 0;
+}
+
+.columns {
+  display: flex;
+
+  .link-block {
+    @include disable-default-a-behaviour;
+
+    color: pvar(--mainForegroundColor);
+    padding: 10px;
+    transition: background-color 0.2s ease-in;
+    flex-basis: 33%;
+
+    &: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;
+    }
+
+    .link-title,
+    div {
+      text-align: center;
+    }
+  }
+}
+
+.configure-instance-button {
+  @include peertube-button;
+  @include orange-button;
+  @include disable-default-a-behaviour;
+
+  display: inline-block;
+}
+
+.action-button-understood {
+  @include peertube-button;
+  @include grey-button;
 }