mirror of
https://github.com/FlyInTheBox/31TSAI.git
synced 2024-11-09 20:44:11 +01:00
3d57b00d35
dqwdq
48 lines
800 B
CSS
48 lines
800 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
|
|
.content-wrapper {
|
|
margin: 15px;
|
|
padding: 5px;
|
|
border: 1px solid black;
|
|
height: calc(100vh - 30px);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 40px;
|
|
}
|
|
|
|
.img-wrapper {
|
|
height: 100%;
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.table-wrapper {
|
|
width: calc(100% - 40px);
|
|
height: 80%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
table, tr, th, td {
|
|
border: 1px solid black;
|
|
border-collapse: collapse;
|
|
a {
|
|
text-decoration: none;
|
|
color: black;
|
|
}
|
|
a:hover {
|
|
color: rgba(24, 24, 24, 0.8);
|
|
}
|
|
}
|
|
tr, th, td {
|
|
padding: 5px;
|
|
}
|
|
}
|