1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- table{
- display: flex;
- text-align: center;
- flex-direction: column;
- margin-bottom: 50px;
- }
- td, th{
- height: 40px;
- border: 1px solid black;
- }
- td{
- width: 300px
- }
- th{
- min-width: 200px;
- }
- .list {
- display: flex;
- justify-content: center;
- flex-direction: column;
- }
- .li {
- text-decoration: none;
- }
- .div {
- display: flex;
- align-items: center;
- }
- .button {
- margin: 5px 15px;
- height: 25px;
- border: 1px solid tan;
- border-radius: 3px;
- cursor: pointer;
- background-color: cornsilk;
- color: darkred;
- position: relative;
- font-weight: 600;
- left: 10px;
- }
- .button:hover {
- height: 25px;
- border: 1px solid darkred;
- border-radius: 3px;
- cursor: pointer;
- background-color: darkred;
- color: white;
- }
|