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