diff options
author | Mario <mario@mariovavti.com> | 2021-11-23 09:17:04 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-11-23 09:17:04 +0000 |
commit | 06e214e5675769318a40abc9850bf8d5c85a7ee3 (patch) | |
tree | a24462b427835e55fb2f167c69fa1fc0991bb92b /view/theme/redbasic/css | |
parent | 18f8cafee0cc127e97d40aa70e45fd08d91c2dfe (diff) | |
download | volse-hubzilla-06e214e5675769318a40abc9850bf8d5c85a7ee3.tar.gz volse-hubzilla-06e214e5675769318a40abc9850bf8d5c85a7ee3.tar.bz2 volse-hubzilla-06e214e5675769318a40abc9850bf8d5c85a7ee3.zip |
more work on responsive aside
Diffstat (limited to 'view/theme/redbasic/css')
-rw-r--r-- | view/theme/redbasic/css/style.css | 31 |
1 files changed, 12 insertions, 19 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index a4641b68e..aad17698b 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -24,15 +24,15 @@ body { aside#region_1 { border-right: 1px solid transparent; - width: $left_aside_widthpx; - min-width: $left_aside_widthpx; - max-width: $left_aside_widthpx; + width: $left_aside_widthrem; + min-width: $left_aside_widthrem; + max-width: $left_aside_widthrem; } aside#region_3 { - width: $right_aside_widthpx; - min-width: $left_aside_widthpx; - max-width: $right_aside_widthpx; + width: $right_aside_widthrem; + min-width: $left_aside_widthrem; + max-width: $right_aside_widthrem; } aside#left_aside_wrapper, @@ -49,7 +49,7 @@ main { #overlay { position: fixed; top: 0; - left: $left_aside_widthpx; + left: $left_aside_widthrem; width: 100vw; height: 100vh; background: rgba(0, 0, 0, .3); @@ -401,16 +401,10 @@ footer { } .vcard-card { - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; + background-color: rgba(254,254,254,0.5); } .vcard { - margin-bottom: 10px; - padding: 0px 10px 10px 10px; - background-color: rgba(254,254,254,0.5); - border: 1px solid rgba(254,254,254,0.5); - border-top: 0px; word-wrap: break-word; } @@ -563,8 +557,8 @@ footer { } .contact-block-img { - width:47px; - height:47px; + width: 2.95rem; + height: 2.95rem; margin-bottom: 3px; } @@ -1183,7 +1177,6 @@ img.mail-conv-sender-photo { .widget { background-color: rgba(254,254,254,.5); - border: 1px solid rgba(254,254,254,.5); border-radius: $radius; } @@ -1522,8 +1515,8 @@ blockquote { } main { - left: -$left_aside_widthpx; - width: calc( 100% + $left_aside_widthpx ); + left: -$left_aside_widthrem; + width: calc( 100% + $left_aside_widthrem ); } main.region_1-on { |