aboutsummaryrefslogtreecommitdiff
path: root/ui/src/app/app.component.sass
diff options
context:
space:
mode:
authorAlex <alexta69@gmail.com>2019-12-03 22:32:07 +0200
committerAlex <alexta69@gmail.com>2019-12-03 22:32:07 +0200
commit9a959f932600fb39b075b1c6c4c8d7bac3d184f9 (patch)
treeb78fcf05eac4aef22973153c217619cf5c5110ff /ui/src/app/app.component.sass
parentadd LICENSE and README.md (diff)
downloadmetube-9a959f932600fb39b075b1c6c4c8d7bac3d184f9.tar.gz
metube-9a959f932600fb39b075b1c6c4c8d7bac3d184f9.tar.bz2
metube-9a959f932600fb39b075b1c6c4c8d7bac3d184f9.zip
add "completed" panel
Diffstat (limited to 'ui/src/app/app.component.sass')
-rw-r--r--ui/src/app/app.component.sass34
1 files changed, 28 insertions, 6 deletions
diff --git a/ui/src/app/app.component.sass b/ui/src/app/app.component.sass
index 847fc30..71b07f8 100644
--- a/ui/src/app/app.component.sass
+++ b/ui/src/app/app.component.sass
@@ -1,15 +1,37 @@
.add-url-box
- padding: 5rem 0
max-width: 720px
- margin: auto
+ margin: 4rem auto
-.rounded-box
- border: 1px solid rgba(0,0,0,.125)
- border-radius: .25rem
+$metube-section-color-bg: rgba(0,0,0,.07)
+
+.metube-section-header
+ font-size: 1.8rem
+ font-weight: 300
+ position: relative
+ background: $metube-section-color-bg
+ padding: 0.5rem 0
+ margin-top: 3.5rem
+
+.metube-section-header:before
+ content: ""
+ position: absolute
+ top: 0
+ bottom: 0
+ left: -9999px
+ right: 0
+ border-left: 9999px solid $metube-section-color-bg
+ box-shadow: 9999px 0 0 $metube-section-color-bg
+
+button:hover
+ text-decoration: none
th
border-top: 0
- border-bottom: 3px solid #dee2e6 !important
+ border-bottom-width: 3px !important
+ vertical-align: middle !important
+
+td
+ vertical-align: middle
.disabled
opacity: 0.5
bgstack15