﻿/*
    Theme Name: rtb-all
    Description: Stylesheet fpr RTB-WebApplications
    Author: Thomas Gröhn
    Author URI: https://knobloch-groehn.com/
    Tags: Website, Rtb, Content, CMS

*/

/*
    Best Practises:
    https://1stwebdesigner.com/css-best-practices/
     - Use CSS Reset
     - Provide Style Sheet Information
     - Organize Elements on the Stylesheet from Top to Bottom
     - Shrink CSS file size with CSS Compressors
     - Group IDs and Classes That Fall under the Same Element
     - Use Annotations/Comments to Identify a Set of CSS
     - Structure Naming Convention
     - Use Hex Code instead of Name Color
     - Use CSS Vendor Prefixed
     - Validate Your CSS

    Bad Habits to Avoid:
     - Creating Redundant CSS
     - Mixing Tag Names with ID or Class Name
     - Targetting Margin and Padding Positions Separately
     - Using Underscores on ID or Class Name

    To remeber ;)
      h2 - Element
      .header - class
      #start - ID (Unique)
*/

@import 'rtb-variables.css';

@import 'rtb-general.css';
@import 'rtb-navheader.css';
@import 'rtb-footer.css';
@import 'rtb-heading.css';
@import 'rtb-dashboard.css';

@import 'rtb-forms.css';
@import 'rtb-ident.css';
@import 'rtb-uiextensions.css';
