]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/+about/about-instance/about-instance.component.scss
Fix CSS input displaying contact form + remove contact button underline
[github/Chocobozzz/PeerTube.git] / client / src / app / +about / about-instance / about-instance.component.scss
index 0296ae8e9082f39bde640b576934e2fd176f5727..b7bf1099501dd2ec29d5896c73466c9b71a0bf04 100644 (file)
@@ -5,31 +5,86 @@
   display: flex;
   justify-content: space-between;
 
-  & > div {
+  .title {
     font-size: 20px;
-    font-weight: bold;
-    margin-bottom: 15px;
+    font-weight: $font-semibold;
   }
 
-  & > .contact-admin {
+  .contact-admin {
     @include peertube-button;
     @include orange-button;
 
     height: fit-content;
+
+    &:hover,
+    &:active {
+      text-decoration: none;
+    }
+  }
+}
+
+.instance-badges {
+  font-size: 16px;
+  margin-bottom: 20px;
+
+  .badge {
+    @include margin-right(5px);
+
+    font-size: 12px;
+    font-weight: $font-semibold;
+
+    &.category {
+      background-color: pvar(--mainColor);
+    }
   }
 }
 
 .section-title {
   font-weight: $font-semibold;
-  font-size: 20px;
+  font-size: 16px;
   margin-bottom: 5px;
+  display: flex;
+  align-items: center;
+}
+
+.middle-title {
+  @include in-content-small-title;
+
+  margin-top: 0;
+  margin-bottom: 25px;
 }
 
-.short-description, .description, .terms, .signup {
-  margin-bottom: 30px;
+.block {
+  margin-bottom: 75px;
+  font-size: 15px;
 }
 
 .short-description .dedicated-to-nsfw {
   margin-top: 20px;
   font-weight: $font-semibold;
 }
+
+.anchor-link {
+  @include disable-outline;
+
+  position: relative;
+
+  &:hover,
+  &:active {
+    &::after {
+      @include margin-left(0.2em);
+
+      content: '#';
+      display: inline-block;
+    }
+  }
+
+  .middle-title,
+  .section-title {
+    display: inline-block;
+  }
+
+  .section-title {
+    color: var(--mainForegroundColor);
+  }
+}