Sponsored Content
Top Forums Web Development New Supplementary CSS for Forum Postbit Post 303027360 by Neo on Friday 14th of December 2018 06:07:21 AM
Old 12-14-2018
New Supplementary CSS for Forum Postbit

Working on moving inline style to a supplementary CSS file. This one is postbit.css:



Code:
.pb-wrapper {
  border-style: solid;
  border-width: 1px;
  border-color: rgba(110, 117, 182, 0.99);
  padding: 0px 0px 0px 0px;
}

.pb-wrapper-b {
  padding: 0px;
  border-width: 0px 0px 1px 0px;
  border-color: rgba(110, 117, 182, 0.2);
  border-style: solid;
  width: 100%;
  margin: 0px;
}
.pb-right {
  float: right;
  border-style: none;
}

.pb-scott {
  margin: 0px 10px 0px 10px;
  display: none;
}

.pb-thanks {
  color: rgba(1, 8, 94, 0.9);
  cursor: pointer;
  padding: 0px;
  float: left;
  font-size: 2em;
  margin: 0px 10px 0px 10px;
}

.pb-usertable {
  padding: 10px 20px 10px 20px;
  border: 0px;
  border-style: none;
  color: rgba(110, 117, 182, 0.8);
  margin: 0px;
}

.pb-tools {
  padding: 20px 20px 30px 20px;
  border-width: 0px 0px 0px 0px;
  border-style: none;
  color: rgba(110, 117, 182, 0.8);
  margin: 0px;
}

.pb-attach {
  margin-top: 15px;
  margin-bottom: 0px;
  margin-top: 25px;
  border-width: 0px;
  border-style: none;
}

.pb-swiper {
  margin-bottom: 0px;
  text-align: center;
}

.pb-edit {
  margin-top: 10px;
  margin-bottom: 0px;
  padding: 10px 0px 20px 0px;
  text-align: right;
}

.pb-infract {
  text-decoration: none;
  float: right;
}

.pb-red {
  float: right;
  color: red;
}

.pb-red-icon {
  font-color: red;
  float: left;
  font-size: 0.5em;
  display: none;
}

.pb-link-rt {
  float: right;
  text-decoration: none;
}

.pb-msg-icon {
  border: 0;
  height: 16px;
  width: 16px;
}

.pb-valign {
  vertical-align: middle;
  padding: 0px;
  margin: 0px 0px 0px 5px;
}

 

3 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

user control- supplementary group

What is a supplementary group and how do you make a supplementary group for members of a team? Thanks in advance. ---------- Post updated 05-10-11 at 12:09 PM ---------- Previous update was 05-09-11 at 10:08 PM ---------- anybody? (1 Reply)
Discussion started by: nlassiter
1 Replies

2. War Stories

Postbit Changes (Phase II Upgrade)

Next in the pipeline, thinking I will work on postbit (the core of the posts) and try to get Bootstrap and badges working in postbit and not break the quick editors in the post. Note, I had to turn off the scrollbars in postbit for now because when I turn them on, it breaks the quick editor in... (11 Replies)
Discussion started by: Neo
11 Replies

3. What is on Your Mind?

JQuery and CSS Flex Code for Responsive Forum Home Page

So far, I have completed making the home page more responsive (except for the forum stats at the top and the WOL box at the bottom, they still use scroll bars). xevV3_iZ8-s For full screen use the link below and set your YT resolution to 1080p60 HD https://youtu.be/xevV3_iZ8-s Here is... (1 Reply)
Discussion started by: Neo
1 Replies
Plack::Middleware::File::Sass(3pm)			User Contributed Perl Documentation			Plack::Middleware::File::Sass(3pm)

NAME
Plack::Middleware::File::Sass - Sass and SCSS support for all Plack frameworks SYNOPSIS
use Plack::App::File; use Plack::Builder; builder { mount "/stylesheets" => builder { enable "File::Sass"; Plack::App::File->new(root => "./stylesheets"); }; }; # Or with Middleware::Static enable "File::Sass", syntax => "scss"; enable "Static", path => qr/.css$/, root => "./static"; DESCRIPTION
Plack::Middleware::File::Sass is a Plack middleware component that works with Plack::App::File or Plack::Middleware::Static to compile Sass <http://sass-lang.com/> templates into CSS stylesheet in every request. When a request comes in for .css file, this middleware changes the internal path to .sass or .scss, depending on the configuration, in the same directory. If the Sass template is found, a new CSS stylesheet is built on memory and served to the browsers. Otherwise, it falls back to the original .css file in the directory. This middleware should be very handy for the development. While Sass to CSS rendering is reasonably fast, for the production environment you might want to precompile Sass templates to CSS files on disk and serves them with a real web server like nginx or lighttpd. SASS BACKENDS
If you have the sass gem version higher than 3 installed and have the "sass" executable available in your PATH, this module automatically uses the command to convert Sass or SCSS into CSS. If the command is not available and you have Text::Sass perl module available, it will be used. Otherwise you'll get an exception during the initialization of this middleware component. OPTIONS
syntax Defines which syntax to use. Valid values are sass and scss. Defaults to sass. AUTHOR
Tatsuhiko Miyagawa <miyagawa@bulknews.net> LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
Plack::App::File Text::Sass http://sass-lang.com/ <http://sass-lang.com/> perl v5.12.4 2011-02-14 Plack::Middleware::File::Sass(3pm)
All times are GMT -4. The time now is 07:43 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy