123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- body {
- font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
- padding: 0;
- margin: 0;
- }
- #main {
- background: #f5ffff;
- border-collapse: collapse;
- text-align: left;
- }
- #main th {
- border-top: 1px solid #777777;
- border-bottom: 1px solid #777777;
- box-shadow: inset 0 1px 0 #999999, inset 0 -1px 0 #999999;
- background: linear-gradient(#9595b6, #5a567f);
- color: white;
- padding: 10px 15px;
- position: relative;
- cursor: pointer;
- }
- #main th:after {
- content: "";
- display: block;
- position: absolute;
- left: 0;
- top: 25%;
- height: 25%;
- width: 100%;
- background: linear-gradient(rgba(255, 255, 255, 0), rgba(255,255,255,.08));
- }
- #main tr:nth-child(odd) {
- background: #ebf3f9;
- }
-
- #main th:first-child {
- border-left: 1px solid #777777;
- border-bottom: 1px solid #777777;
- box-shadow: inset 1px 1px 0 #999999, inset 0 -1px 0 #999999;
- }
- #main th:last-child {
- border-right: 1px solid #777777;
- border-bottom: 1px solid #777777;
- box-shadow: inset -1px 1px 0 #999999, inset 0 -1px 0 #999999;
- }
- #main td {
- border: 1px solid #e3eef7;
- padding: 10px 15px;
- position: relative;
- transition: all 0.5s ease;
- cursor: pointer;
- }
- #main tbody:hover td {
- color: transparent;
- text-shadow: 0 0 3px #a09f9d;
- }
- #main tbody:hover tr:hover td {
- color: #444444;
- text-shadow: none;
- }
- .information {
- position: absolute;
- top: 30px;
- right: 100px;
- display: none;
- width: 440px;
- height: auto;
- padding: 10px;
- border: 1px solid black;
- border-radius: 3px;
- background-color: rgba(23, 183, 237, .5);
- font-size: 15px;
- }
|