123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- .width-100px {
- width: 100px;
- }
- .width-200px {
- width: 200px;
- }
- .width-300px {
- width: 300px;
- }
- .width-400px {
- width: 400px;
- }
- .width-600px {
- width: 600px;
- }
- .margin-bottom-5px {
- margin-bottom: 5px;
- }
- .margin-bottom-10px {
- margin-bottom: 10px;
- }
- .static-table {
- width: 100%;
- border-collapse: collapse;
- td {
- border: 1px solid #dddddd;
- height: 51px;
- text-align: center;
- vertical-align: middle;
- }
- tr:nth-child(odd) {
- background-color: #f9f9f9;
- }
- tr:nth-child(even) {
- background-color: #ffffff;
- }
- tr:hover {
- background-color: #ecf3f8;
- }
- }
|