﻿/* ============================================================
   wide-content - a page asking for the whole width
   ------------------------------------------------------------
   WebPage.aspx writes two columns (col-sm-8 and col-sm-4) and every
   page shares them, so a page cannot simply be given a different grid.
   A control that wants the room calls WebPage.UseWideContent(), which
   puts this name on the section and brings this file with it.

   Emptying the side column is a separate matter and not done here: on
   some screens the database has no control in it, on others the column
   is filled but deliberately hidden. This only stops a column that is
   not being shown from taking up room.

   These two rules lived in CommunityList.css, the first screen that
   asked for the width. A second screen now asks for it (the YouTV
   더보기 list), and a rule two screens depend on should not sit in a
   file named after one of them.
   ============================================================ */

.block-wrapper.wide-content .col-sm-8 {
    width: 100%;
}

.block-wrapper.wide-content .col-sm-4 {
    display: none;
}
