Skip to content

Instantly share code, notes, and snippets.

@tamizhvendan
Created July 17, 2014 07:21
Show Gist options
  • Save tamizhvendan/e841e3643400836bd57f to your computer and use it in GitHub Desktop.
Save tamizhvendan/e841e3643400836bd57f to your computer and use it in GitHub Desktop.
/* Entire Page has been divided into 3Columns. Note: iGoogle Page has 3 columns */
#column1, #column2, #column3
{
display: inline-block;
float: left;
width: 33%;
height: auto;
text-align: center;
padding-bottom: 100px;
}
/* Css Classes for Entire Widget */
.Widget
{
margin: 10px;
margin-left: auto;
margin-right: auto;
width: 95%;
min-height: 200px;
border: 1px solid Black;
}
/* Css Classes for Widget Headers */
.WidgetHeader
{
height: 25px;
cursor: move;
text-align: left;
padding-left: 3px;
color: White;
font-weight: bold;
}
.GreenWidgetHeader
{
background-color: Green;
}
.GrayWidgetHeader
{
background-color: Gray;
}
.PurpleWidgetHeader
{
background-color: Purple;
}
/* Css Classes for Widget Body */
.WidgetBody
{
min-height: 175px;
height: auto;
background: #F0F0F0;
}
/* Placeholder while dragging the widget using jQuery*/
.ui-sortable-placeholder
{
border: 1px dashed black;
visibility: visible !important;
height: 50px !important;
}
.ui-sortable-placeholder *
{
visibility: hidden;
}
.footer
{
clear: both;
display: block;
position: absolute;
color: Green;
bottom: 5px;
right: 5px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment