Back to home page

EIC code displayed by LXR

 
 

    


Warning, /epic.github.io/css/custom.css is written in an unsupported language. File is not indexed.

0001 /* plain table */
0002 
0003 .plain {
0004     margin-right:auto;
0005     margin-left:0px
0006 }
0007 
0008 table.plain tr {
0009     background-color: white;
0010     line-height: 12px;
0011     /* border-bottom: 1px dotted; */
0012 }
0013 
0014 table.plain td {
0015     text-align: left;
0016 }
0017 
0018 table.plain th {
0019     text-align: left;
0020 }
0021 
0022 /* ---------------------------- */
0023 /* BLOCKQUOTES */
0024 blockquote{
0025     padding: .5em .5em .5em .75em;
0026     color: #000;
0027     background-color: #EEEEEE; /*  background: #FFEBCD; color: #8B4513; */
0028     word-wrap: normal;
0029     border-left: 0.5em solid #AAA;
0030     border-right: 0.5em solid #AAA;
0031     border-radius: 6px;
0032 }
0033 
0034 /*
0035 blockquote::before {
0036   display: block;
0037   height: 0;
0038   content: "“";
0039   margin-left: -.95em;
0040   font: italic 400%/1 Open Serif,Georgia,"Times New Roman", serif;
0041   color: #999;
0042 }
0043 */
0044 
0045 /* for nested paragraphs in block quotes */
0046 blockquote p {
0047   display: inline;
0048 }
0049 
0050 /* OTHER STUFF */
0051 .bd-placeholder-img {
0052     font-size: 1.125rem;
0053     text-anchor: middle;
0054     -webkit-user-select: none;
0055     -moz-user-select: none;
0056     -ms-user-select: none;
0057     user-select: none;
0058 }
0059 
0060 
0061 p {
0062     width: "60%";
0063 }
0064 
0065 /* ---------------------------- */
0066 /* TABLE */
0067 th {
0068     text-align: left;
0069     color: #fff;
0070     background-color: #7d7c7c;
0071     padding: 6px;
0072 }
0073 
0074 td {
0075     text-align: left;
0076     vertical-align: top;
0077     padding: 8px;
0078 }
0079 
0080 tr:nth-child(even) {background-color: #d4d4d4;}
0081 
0082 /* ---------------------------- */
0083 @media (min-width: 768px) {
0084     .bd-placeholder-img-lg {
0085         font-size: 3.5rem;
0086     }
0087 }
0088       
0089 .dropdown-submenu {
0090     position: relative;
0091 }
0092 
0093 .dropdown-submenu>.dropdown-menu {
0094     top: 0;
0095     left: 100%;
0096     margin-top: -6px;
0097     margin-left: -1px;
0098     -webkit-border-radius: 0 6px 6px 6px;
0099     -moz-border-radius: 0 6px 6px;
0100     border-radius: 0 6px 6px 6px;
0101 }
0102 
0103 .dropdown-submenu:hover>.dropdown-menu {
0104     display: block;
0105 }
0106 
0107 .dropdown-submenu>a:after {
0108     display: block;
0109     content: " ";
0110     float: right;
0111     width: 0;
0112     height: 0;
0113     border-color: transparent;
0114     border-style: solid;
0115     border-width: 5px 0 5px 5px;
0116     border-left-color: #ccc;
0117     margin-top: 5px;
0118     margin-right: -10px;
0119 }
0120 
0121 .dropdown-submenu:hover>a:after {
0122     border-left-color: #fff;
0123 }
0124 
0125 .dropdown-submenu.pull-left {
0126     float: none;
0127 }
0128 
0129 .dropdown-submenu.pull-left>.dropdown-menu {
0130     left: -100%;
0131     margin-left: 10px;
0132     -webkit-border-radius: 6px 0 6px 6px;
0133     -moz-border-radius: 6px 0 6px 6px;
0134     border-radius: 6px 0 6px 6px;
0135 }