github.com/ssetin/penguincast@v0.2.0/html/style.css (about)

     1  html {
     2  	margin: 0;
     3  	padding: 0;
     4  	background-color: #FFF;
     5  }
     6  
     7  body {
     8  	padding: 0 25px 0 50px;
     9  	background-color: #FFF;
    10  	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    11  	text-decoration: none;
    12  	color: #111;
    13  }
    14  
    15  a {
    16  	color: #0004fc;
    17  	text-decoration: none;
    18  	border-bottom: 1px dotted #0004fc;
    19  	display: inline-block;
    20  }
    21  
    22  a:hover {
    23  	color: #0004fc;
    24  	border-bottom: 1px solid #0004fc;
    25  }
    26  
    27  h1 {
    28  	text-decoration: none;
    29  	font-weight: bold;    
    30  	color: #111;
    31  	margin-top: 3px;
    32  }
    33  
    34  h3 {
    35  	margin: 0px;
    36      padding: 0px;
    37  	font-weight: bold;
    38  	font-size: 110%;
    39  	color: #111;
    40  }
    41  
    42  h3 small {
    43  	color: #111;
    44  	font-size: 70%;
    45  	padding-left: 15px;
    46  }
    47  
    48  .clear{
    49  	clear: both;
    50  }
    51  
    52  .left{
    53  	float: left;
    54  }
    55  
    56  .right{
    57  	float: right;
    58  }
    59  
    60  .mainheader{
    61  	padding: 0px 5px 5px 15px;
    62  }
    63  
    64  .middlep{
    65  	width: 100%;
    66      height: 100%;
    67      position: absolute;
    68      top: 0;
    69      left: 0;
    70  	overflow: auto;
    71  }
    72  
    73  .middleb {
    74  	width: 500px;
    75      height: 250px;
    76      position: absolute;
    77      top: 50%;
    78  	left: 50%;
    79  	top: 0;
    80      right: 0;
    81      bottom: 0;
    82      left: 0;
    83      margin: auto;
    84  }
    85  
    86  /* Tables */
    87  
    88  table.greyGridTable {
    89  	border: 2px solid #FFFFFF;
    90  	text-align: left;
    91  	border-collapse: collapse;
    92  	margin-bottom: 15px;
    93  }
    94  table.greyGridTable td, table.greyGridTable th {
    95  	border: 1px solid #FFFFFF;
    96  	padding: 2px 2px;
    97  }
    98  table.greyGridTable tbody td {
    99  	font-size: 13px;
   100  }
   101  table.greyGridTable td:nth-child(odd) {
   102  	background: #EBEBEB;
   103  }
   104  table.greyGridTable thead {
   105  	background: #FFFFFF;
   106  	border-bottom: 4px solid #333333;
   107  }
   108  table.greyGridTable thead th {
   109  	font-size: 15px;
   110  	font-weight: bold;
   111  	color: #333333;
   112  	text-align: center;
   113  	border-left: 2px solid #333333;
   114  }
   115  table.greyGridTable thead th:first-child {
   116  	border-left: none;
   117  }
   118    
   119  table.greyGridTable tfoot {
   120  	font-size: 14px;
   121  	font-weight: bold;
   122  	color: #333333;
   123  	border-top: 4px solid #333333;
   124  }
   125  table.greyGridTable tfoot td {
   126  	font-size: 14px;
   127  }
   128  
   129  
   130  /* Footer */
   131  
   132  #footer {
   133  	border-top: 1px groove #333333;
   134  	margin-top: 20px;
   135  	font-size: 80%;
   136  	line-height:16px;
   137  }
   138